Skip to content

Commit

Permalink
Merge pull request #19082 from emberjs/refactor-mixin
Browse files Browse the repository at this point in the history
[BUGFIX release] Simplify mixin application
  • Loading branch information
rwjblue authored Aug 10, 2020
2 parents cabe7da + f77f5a4 commit bb4465b
Show file tree
Hide file tree
Showing 13 changed files with 576 additions and 679 deletions.
4 changes: 1 addition & 3 deletions packages/@ember/-internals/metal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,11 @@ export {
DecoratorPropertyDescriptor,
isElementDescriptor,
nativeDescDecorator,
} from './lib/decorator';
export {
descriptorForDecorator,
descriptorForProperty,
isClassicDecorator,
setClassicDecorator,
} from './lib/descriptor_map';
} from './lib/decorator';
export { default as libraries, Libraries } from './lib/libraries';
export { default as getProperties } from './lib/get_properties';
export { default as setProperties } from './lib/set_properties';
Expand Down
2 changes: 1 addition & 1 deletion packages/@ember/-internals/metal/lib/alias.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import { finishLazyChains, getChainTagsForKey } from './chain-tags';
import {
ComputedDescriptor,
Decorator,
descriptorForDecorator,
isElementDescriptor,
makeComputedDecorator,
} from './decorator';
import { descriptorForDecorator } from './descriptor_map';
import { defineProperty } from './properties';
import { get } from './property_get';
import { set } from './property_set';
Expand Down
Loading

0 comments on commit bb4465b

Please sign in to comment.