TypeScript/tests/baselines/reference/parserKeywordsAsIdentifierName1.js

15 lines
206 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [parserKeywordsAsIdentifierName1.ts]
var big = {
break : 0,
super : 0,
const : 0
}
//// [parserKeywordsAsIdentifierName1.js]
var big = {
break: 0,
super: 0,
const: 0
};