restructure test directory
This commit is contained in:
1
test/fixtures/syntax/arrow-functions/expression/actual.js
vendored
Normal file
1
test/fixtures/syntax/arrow-functions/expression/actual.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
arr.map(x => x * x);
|
||||
3
test/fixtures/syntax/arrow-functions/expression/expected.js
vendored
Normal file
3
test/fixtures/syntax/arrow-functions/expression/expected.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
arr.map(function (x) {
|
||||
return x * x;
|
||||
});
|
||||
Reference in New Issue
Block a user