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