We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cb5f3d commit e8ef003Copy full SHA for e8ef003
src/program.ts
@@ -1045,6 +1045,7 @@ export class Program extends DiagnosticEmitter {
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))!
1048
+ assert(name != null);
1049
if (!name.length) continue; // explicitly disabled
1050
let firstChar = name.charCodeAt(0);
1051
if (firstChar >= CharCode._0 && firstChar <= CharCode._9) {
0 commit comments