restructure types

This commit is contained in:
Sebastian McKenzie
2015-03-11 00:04:06 +11:00
parent 8328f638c2
commit 98ca541fde
96 changed files with 813 additions and 795 deletions

View File

@@ -2,4 +2,5 @@ class Foo {
foo() {}
"foo"() {}
[bar]() {}
[bar + "foo"]() {}
}

View File

@@ -14,6 +14,9 @@ var Foo = (function () {
}, {
key: bar,
value: function () {}
}, {
key: bar + "foo",
value: function () {}
}]);
return Foo;
})();