name additional methods that are now covered since the naming is done in tandem
This commit is contained in:
parent
6e8ab16b25
commit
8daf95bf59
@ -1 +1,4 @@
|
|||||||
export { bare as FunctionExpression, bare as ArrowFunctionExpression } from "../../helpers/name-method";
|
export {
|
||||||
|
bare as FunctionExpression,
|
||||||
|
bare as ArrowFunctionExpression
|
||||||
|
} from "../../helpers/name-method";
|
||||||
|
|||||||
@ -8,8 +8,8 @@ var Foo = (function () {
|
|||||||
babelHelpers.createDecoratedClass(Foo, [{
|
babelHelpers.createDecoratedClass(Foo, [{
|
||||||
key: "foo",
|
key: "foo",
|
||||||
decorators: [bar, foo],
|
decorators: [bar, foo],
|
||||||
get: function () {},
|
get: function get() {},
|
||||||
set: function (bar) {}
|
set: function set(bar) {}
|
||||||
}]);
|
}]);
|
||||||
return Foo;
|
return Foo;
|
||||||
})();
|
})();
|
||||||
@ -8,7 +8,7 @@ var Foo = (function () {
|
|||||||
babelHelpers.createDecoratedClass(Foo, [{
|
babelHelpers.createDecoratedClass(Foo, [{
|
||||||
key: "foo",
|
key: "foo",
|
||||||
decorators: [bar],
|
decorators: [bar],
|
||||||
get: function () {}
|
get: function get() {}
|
||||||
}]);
|
}]);
|
||||||
return Foo;
|
return Foo;
|
||||||
})();
|
})();
|
||||||
@ -11,7 +11,7 @@ var Foo = (function () {
|
|||||||
babelHelpers.createDecoratedClass(Foo, [{
|
babelHelpers.createDecoratedClass(Foo, [{
|
||||||
key: "foo",
|
key: "foo",
|
||||||
decorators: [bar],
|
decorators: [bar],
|
||||||
initializer: function () {
|
initializer: function initializer() {
|
||||||
return "Bar";
|
return "Bar";
|
||||||
},
|
},
|
||||||
enumerable: true
|
enumerable: true
|
||||||
|
|||||||
@ -10,7 +10,7 @@ var Foo = (function () {
|
|||||||
babelHelpers.createDecoratedClass(Foo, null, [{
|
babelHelpers.createDecoratedClass(Foo, null, [{
|
||||||
key: "foo",
|
key: "foo",
|
||||||
decorators: [bar],
|
decorators: [bar],
|
||||||
initializer: function () {
|
initializer: function initializer() {
|
||||||
return "Bar";
|
return "Bar";
|
||||||
},
|
},
|
||||||
enumerable: true
|
enumerable: true
|
||||||
|
|||||||
@ -8,7 +8,7 @@ var Foo = (function () {
|
|||||||
babelHelpers.createDecoratedClass(Foo, [{
|
babelHelpers.createDecoratedClass(Foo, [{
|
||||||
key: "foo",
|
key: "foo",
|
||||||
decorators: [bar],
|
decorators: [bar],
|
||||||
set: function (arg) {}
|
set: function set(arg) {}
|
||||||
}]);
|
}]);
|
||||||
return Foo;
|
return Foo;
|
||||||
})();
|
})();
|
||||||
Loading…
x
Reference in New Issue
Block a user