TypeScript/tests/baselines/reference/undefinedSymbolReferencedInArrayLiteral1.js
2014-07-12 17:30:19 -07:00

17 lines
406 B
JavaScript

//// [undefinedSymbolReferencedInArrayLiteral1.ts]
var tokens = [{ startIndex: deltaOffset }];
var functions = [function() {
[1, 2, 3].NonexistantMethod();
anotherNonExistingMethod();
}];
//// [undefinedSymbolReferencedInArrayLiteral1.js]
var tokens = [{ startIndex: deltaOffset }];
var functions = [function () {
[1, 2, 3].NonexistantMethod();
anotherNonExistingMethod();
}];