fix generation tests to reflect acorn update

This commit is contained in:
Sebastian McKenzie
2015-06-20 23:35:02 +01:00
parent 4f08a77230
commit 8f74e8068c
5 changed files with 13 additions and 8 deletions

View File

@@ -3,11 +3,11 @@ class Foo {
foo() {}
["foo"]() {}
get foo() {}
set foo() {}
set foo(bar) {}
static async foo() {}
static foo() {}
static ["foo"]() {}
static get foo() {}
static set foo() {}
static set foo(bar) {}
}

View File

@@ -3,11 +3,11 @@ class Foo {
foo() {}
["foo"]() {}
get foo() {}
set foo() {}
set foo(bar) {}
static async foo() {}
static foo() {}
static ["foo"]() {}
static get foo() {}
static set foo() {}
static set foo(bar) {}
}

View File

@@ -16,5 +16,5 @@ var foo = {
async foo() {},
*foo() {},
get foo() {},
set foo() {}
set foo(foo) {}
};

View File

@@ -16,5 +16,5 @@ var foo = {
async foo() {},
*foo() {},
get foo() {},
set foo() {}
set foo(foo) {}
};