TypeScript/tests/baselines/reference/functionType.js
2015-02-06 18:45:09 -08:00

13 lines
208 B
JavaScript

//// [functionType.ts]
function salt() {}
salt.apply("hello", []);
(new Function("return 5"))();
//// [functionType.js]
function salt() { }
salt.apply("hello", []);
(new Function("return 5"))();