restructure test directory
This commit is contained in:
13
test/fixtures/syntax/classes/instance-method/expected.js
vendored
Normal file
13
test/fixtures/syntax/classes/instance-method/expected.js
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
var Test = function () {
|
||||
function Test() {
|
||||
}
|
||||
Object.defineProperties(Test.prototype, {
|
||||
test: {
|
||||
writeable: true,
|
||||
value: function () {
|
||||
return 5 + 5;
|
||||
}
|
||||
}
|
||||
});
|
||||
return Test;
|
||||
}();
|
||||
Reference in New Issue
Block a user