restructure test directory
This commit is contained in:
5
test/fixtures/syntax/classes/super-fallback/actual.js
vendored
Normal file
5
test/fixtures/syntax/classes/super-fallback/actual.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
class Test {
|
||||
constructor() {
|
||||
super.hasOwnProperty("test");
|
||||
}
|
||||
}
|
||||
6
test/fixtures/syntax/classes/super-fallback/expected.js
vendored
Normal file
6
test/fixtures/syntax/classes/super-fallback/expected.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
var Test = function () {
|
||||
function Test() {
|
||||
Function.prototype.hasOwnProperty.call(this, "test");
|
||||
}
|
||||
return Test;
|
||||
}();
|
||||
Reference in New Issue
Block a user