name additional methods that are now covered since the naming is done in tandem

This commit is contained in:
Sebastian McKenzie 2015-05-08 00:22:43 +01:00
parent 6e8ab16b25
commit 8daf95bf59
7 changed files with 16 additions and 13 deletions

View File

@ -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";

View File

@ -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;
})(); })();

View File

@ -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;
})(); })();

View File

@ -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

View File

@ -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

View File

@ -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;
})(); })();