rename syntax tests to transformation
This commit is contained in:
17
test/fixtures/transformation/classes/instance-method/expected.js
vendored
Normal file
17
test/fixtures/transformation/classes/instance-method/expected.js
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
"use strict";
|
||||
|
||||
var Test = function() {
|
||||
var Test = function Test() {};
|
||||
|
||||
Object.defineProperties(Test.prototype, {
|
||||
test: {
|
||||
writable: true,
|
||||
|
||||
value: function() {
|
||||
return 5 + 5;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
return Test;
|
||||
}();
|
||||
Reference in New Issue
Block a user