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 e08aaf1 commit 5ad5467Copy full SHA for 5ad5467
src/HLL.pir
@@ -14,6 +14,8 @@ and HLL::Grammar.
14
=cut
15
16
.HLL 'nqp'
17
+.loadlib "nqp_group"
18
+.loadlib "nqp_ops"
19
20
.sub '' :anon :load :init
21
load_bytecode 'Regex.pbc'
src/NQP/Compiler.pir
@@ -15,6 +15,12 @@ NQP::Compiler - NQP compiler
.loadlib "nqp_ops"
nqp_dynop_setup
+
+ .local pmc interp, lexpad, nqplexpad
+ interp = getinterp
+ lexpad = get_class 'LexPad'
22
+ nqplexpad = get_class 'NQPLexPad'
23
+ interp.'hll_map'(lexpad, nqplexpad)
24
.end
25
.include 'gen/nqp-how.pir'
26
0 commit comments