allowing comments instead of newlines and not capturing comments (leave that for later as it messes the output)

This commit is contained in:
Torsten Ruger
2014-05-14 22:19:20 +03:00
parent 3912e0cd31
commit c9ffb78e82
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ module Parser
space? >> right_parenthesis
}
rule(:call_site) { name.as(:call_site) >> argument_list }
rule(:call_site) { name.as(:call_site) >> argument_list >> comment.maybe}
end