restructure test directory
This commit is contained in:
1
test/fixtures/syntax/source-maps/arrow-function/actual.js
vendored
Normal file
1
test/fixtures/syntax/source-maps/arrow-function/actual.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
var t = x => x * x;
|
||||
3
test/fixtures/syntax/source-maps/arrow-function/expected.js
vendored
Normal file
3
test/fixtures/syntax/source-maps/arrow-function/expected.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
var t = function(x) {
|
||||
return x * x;
|
||||
};
|
||||
10
test/fixtures/syntax/source-maps/arrow-function/source-mappings.json
vendored
Normal file
10
test/fixtures/syntax/source-maps/arrow-function/source-mappings.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
[{
|
||||
"original": {
|
||||
"line": 1,
|
||||
"column": 15
|
||||
},
|
||||
"generated": {
|
||||
"line": 2,
|
||||
"column": 11
|
||||
}
|
||||
}]
|
||||
Reference in New Issue
Block a user