Skip to content

Commit

Permalink
Merge branch 'topic/dump_tree' into 'master'
Browse files Browse the repository at this point in the history
Replace calls to 'dumpAST' by 'dumpTree'

Closes #236

See merge request eng/libadalang/langkit-query-language!183
  • Loading branch information
HugoGGuerrier committed Mar 12, 2024
2 parents 6d5acc5 + e45d1ed commit d88e964
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 d88e964

Please sign in to comment.