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,10 +11,10 @@ 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
|
||||||
}], null, _instanceInitializers);
|
}], null, _instanceInitializers);
|
||||||
return Foo;
|
return Foo;
|
||||||
})();
|
})();
|
||||||
|
|||||||
@ -10,11 +10,11 @@ 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
|
||||||
}], null, _staticInitializers);
|
}], null, _staticInitializers);
|
||||||
babelHelpers.defineDecoratedPropertyDescriptor(Foo, "foo", _staticInitializers);
|
babelHelpers.defineDecoratedPropertyDescriptor(Foo, "foo", _staticInitializers);
|
||||||
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],
|
||||||
set: function (arg) {}
|
set: function set(arg) {}
|
||||||
}]);
|
}]);
|
||||||
return Foo;
|
return Foo;
|
||||||
})();
|
})();
|
||||||
|
|||||||
@ -17,4 +17,4 @@ var obj = babelHelpers.createDecoratedObject([{
|
|||||||
initializer: function initializer() {
|
initializer: function initializer() {
|
||||||
return "wow";
|
return "wow";
|
||||||
}
|
}
|
||||||
}]);
|
}]);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user