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 c441afd commit a5563f9Copy full SHA for a5563f9
src/compiler.ts
@@ -6872,7 +6872,8 @@ export class Compiler extends DiagnosticEmitter {
6872
table
6873
);
6874
stmts.push(
6875
- module.call(original.internalName, forwardedOperands, returnType.toRef())
+ // assume this will always succeed (can just use name as the reportNode)
6876
+ this.makeCallDirect(original, forwardedOperands, original.declaration.name)
6877
6878
flow.freeScopedLocals();
6879
this.currentFlow = previousFlow;
0 commit comments