Skip to content

Commit

Permalink
Document some of the variables used in regex matching.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Feb 22, 2015
1 parent 490c9c7 commit 04230e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vm/js/QAST/Compiler.nqp
Expand Up @@ -1090,9 +1090,9 @@ class RegexCompiler {
has $!initial_label; # when we can't backtrack no more

has $!cursor;
has $!target;
has $!pos; # the position we are matching at
has $!curclass;
has $!target; # the string we are matching against
has $!pos; # the position in $!target we are currently at
has $!curclass; # the class of the object in $!cursor
has $!bstack;
has $!restart;
has $!cstack;
Expand Down

0 comments on commit 04230e6

Please sign in to comment.