class Test {
method() {}
async asyncMethod() {}
async* asyncGeneratorMethod() {}
* generatorMethod() {}
"foo"() {}
["foo" + "bar"]() {}
5() {}
#private() {}
}
class ContextualKeywords {
static() {}
async static() {}
* static() {}
async* static() {}
declare() {}
get() {} set() {} }
class Static {
static method() {}
static async asyncMethod() {}
static async* asyncGeneratorMethod() {}
static * generatorMethod() {}
static static() {}
static async static() {}
static async* static() {}
static * static() {}
}