We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0442930 commit e5c80e8Copy full SHA for e5c80e8
src/program.ts
@@ -1044,7 +1044,7 @@ export class Program extends DiagnosticEmitter {
1044
// TODO: for (let [alias, name] of globalAliases) {
1045
for (let _keys = Map_keys(globalAliases), i = 0, k = _keys.length; i < k; ++i) {
1046
let alias = unchecked(_keys[i]);
1047
- let name = changetype<string>(globalAliases.get(alias))
+ let name = changetype<string>(globalAliases.get(alias));
1048
assert(name != null);
1049
if (!name.length) continue; // explicitly disabled
1050
let firstChar = name.charCodeAt(0);
0 commit comments