add runtime, property-literals and shebang tests
This commit is contained in:
3
test/fixtures/transformation/misc/runtime/actual.js
vendored
Normal file
3
test/fixtures/transformation/misc/runtime/actual.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
function foo(...test) {
|
||||
|
||||
}
|
||||
5
test/fixtures/transformation/misc/runtime/expected.js
vendored
Normal file
5
test/fixtures/transformation/misc/runtime/expected.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
|
||||
function foo() {
|
||||
var test = to5Runtime.slice.call(arguments);
|
||||
}
|
||||
3
test/fixtures/transformation/misc/runtime/options.json
vendored
Normal file
3
test/fixtures/transformation/misc/runtime/options.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"runtime": true
|
||||
}
|
||||
Reference in New Issue
Block a user