restructure test directory
This commit is contained in:
2
test/fixtures/syntax/spread/contexted-method-call-multiple-args/actual.js
vendored
Normal file
2
test/fixtures/syntax/spread/contexted-method-call-multiple-args/actual.js
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
foob.add(foo, bar, ...numbers);
|
||||
foob.test.add(foo, bar, ...numbers);
|
||||
8
test/fixtures/syntax/spread/contexted-method-call-multiple-args/expected.js
vendored
Normal file
8
test/fixtures/syntax/spread/contexted-method-call-multiple-args/expected.js
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
foob.add.apply(foob, [
|
||||
foo,
|
||||
bar
|
||||
].concat(numbers));
|
||||
foob.test.add.apply(foob.test, [
|
||||
foo,
|
||||
bar
|
||||
].concat(numbers));
|
||||
Reference in New Issue
Block a user