You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
David Majda 2d36ebeb59 Mental model change: Variables do not form a stack, they are registers
This commit changes the model underlying parser variables used to store
match results and parse positions. Until now they were treated as a
stack, now they are thought of as registers. The actual behavior does
not change (yet), only the terminology.

More specifically, this commit:

  * Changes parser variable names from |result0|, |result1|, etc. to
    |r0|, |r1|, etc.

  * Changes various internal names and comments to match the new model.

  * Renames the |computeVarIndices| pass to |allocateRegisters|.
12 years ago
..
allocate-registers.spec.js Mental model change: Variables do not form a stack, they are registers 12 years ago
compute-params.spec.js Mental model change: Variables do not form a stack, they are registers 12 years ago
remove-proxy-rules.spec.js Change ordering of "action" code 12 years ago
report-left-recursion.spec.js Change ordering of "action" code 12 years ago
report-missing-rules.spec.js Change ordering of "action" code 12 years ago