restructure test directory
This commit is contained in:
5
test/fixtures/syntax/property-methods-assignment/method/actual.js
vendored
Normal file
5
test/fixtures/syntax/property-methods-assignment/method/actual.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
var obj = {
|
||||
method() {
|
||||
return 5 + 5;
|
||||
}
|
||||
};
|
||||
5
test/fixtures/syntax/property-methods-assignment/method/expected.js
vendored
Normal file
5
test/fixtures/syntax/property-methods-assignment/method/expected.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
var obj = {
|
||||
method: function () {
|
||||
return 5 + 5;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user