Skip to content

Commit

Permalink
[WIP] Add more types test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-mc committed Sep 10, 2018
1 parent 8f939a9 commit 5565a78
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
Expand Up @@ -9,6 +9,10 @@ class Foo {
#foo() {}
get #foo() {}
set #foo(bar) {}
* #foo() {}
async * #foo() {}
get #bar() {}
set #baz(taz) {}

static async foo() {}
static foo() {}
Expand Down
@@ -1 +1 @@
{ "plugins": ["classPrivateMethods"] }
{ "plugins": ["classPrivateMethods", "asyncGenerators"] }
Expand Up @@ -17,6 +17,14 @@ class Foo {

set #foo(bar) {}

*#foo() {}

async *#foo() {}

get #bar() {}

set #baz(taz) {}

static async foo() {}

static foo() {}
Expand Down

0 comments on commit 5565a78

Please sign in to comment.