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 d16bf96 commit f3190cfCopy full SHA for f3190cf
src/QAST/Compiler.nqp
@@ -24,19 +24,19 @@ class QAST::Compiler is HLL::Compiler {
24
25
method fresh_p() {
26
$!cur_p := $!cur_p + 1;
27
- $!cur_p
+ '$P' ~ $!cur_p
28
}
29
method fresh_s() {
30
$!cur_s := $!cur_s + 1;
31
- $!cur_s
+ '$S' ~ $!cur_s
32
33
method fresh_i() {
34
$!cur_i := $!cur_i + 1;
35
- $!cur_i
+ '$I' ~ $!cur_i
36
37
method fresh_n() {
38
$!cur_n := $!cur_n + 1;
39
- $!cur_n
+ '$N' ~ $!cur_n
40
41
42
method cur_p() { $!cur_p }
0 commit comments