Skip to content

Commit

Permalink
Replace calls to 'dumpAST' by 'dumpTree'
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoGGuerrier committed Mar 12, 2024
1 parent 6d5acc5 commit e45d1ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public static final class DumpExpr extends BuiltinFunctionBody {
@Override
public Object executeGeneric(VirtualFrame frame) {
LKQLLanguage.getContext(this)
.print(LKQLTypeSystemGen.asAdaNode(frame.getArguments()[0]).dumpAST());
.print(LKQLTypeSystemGen.asAdaNode(frame.getArguments()[0]).dumpTree());
return LKQLUnit.INSTANCE;
}
}
Expand Down

0 comments on commit e45d1ed

Please sign in to comment.