Skip to content

Commit c2b6104

Browse files
committed
Avoid referencing QAST::Compiler before it has been compiled (only worked due to bugs).
1 parent b7126b8 commit c2b6104

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/HLL/Compiler.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ class HLL::Compiler {
433433
}
434434

435435
method post($source, *%adverbs) {
436-
QAST::Compiler.post($source)
436+
pir::compreg__Ps('QAST').post($source)
437437
}
438438

439439
method pirbegin() {

0 commit comments

Comments
 (0)