- shorthand assignment of variable declared with lua keyword name should produce error
declare var local: any;
const foo = { local };
- use of lua keywords as variables that are undeclared should produce the correct error
- use of ambient indentifiers with invalid characters should produce error
declare var $foo: any;
$foo = 1;
Feel free to add to this list.
Feel free to add to this list.