parse_proc is main function and below it are a bunch of helper functions
rholang_ast.rs contains custom types
grammar.js is source of truth. In grammar.js, I've modified:
Added var_ref
Changed _parenthesized to parenthesized. I did this to make it easier to match against. If this is a breaking change and needs to be reverted then I can figure out another way to handle this case.
Added mod to _proc_expression. It was missing from the choice and believe this was a mistake that I am correcting.
parse_proc
is main function and below it are a bunch of helper functionsrholang_ast.rs
contains custom typesgrammar.js
is source of truth. Ingrammar.js
, I've modified:var_ref
_parenthesized
toparenthesized
. I did this to make it easier to match against. If this is a breaking change and needs to be reverted then I can figure out another way to handle this case.mod
to_proc_expression
. It was missing from the choice and believe this was a mistake that I am correcting.