Skip to content

Commit

Permalink
Add PSCMs to generator test
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-mc committed Feb 2, 2019
1 parent 9eb010d commit f502e36
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ class Foo {
static get foo() {}
static set foo(bar) {}
static static() {}
static * foo() {}
static async * foo() {}

static #foo() {}
static async #foo() {}
static ["foo"]() {}
static get #foo() {}
static set #foo(taz) {}
static * #foo() {}
static async * #foo() {}

get
() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,24 @@ class Foo {

static static() {}

static *foo() {}

static async *foo() {}

static #foo() {}

static async #foo() {}

static ["foo"]() {}

static get #foo() {}

static set #foo(taz) {}

static *#foo() {}

static async *#foo() {}

get() {}

set() {}
Expand Down

0 comments on commit f502e36

Please sign in to comment.