JS: Remove debug println

This commit is contained in:
Asger F
2022-06-17 14:57:03 +02:00
parent 6a4b3a190d
commit 15278fe94f

View File

@@ -1712,7 +1712,6 @@ public class TypeScriptASTConverter {
// Declaration of form: declare module "X" {...}
ExternalModuleDeclaration decl = new ExternalModuleDeclaration(loc, (Literal) nameNode, body);
attachSymbolInformation(decl, node);
System.out.println("ExternalModuleDeclaration symbol = " + decl.getSymbol());
return decl;
}
if (hasFlag(node, "GlobalAugmentation")) {