cache: Allow scripts to start with comments

This commit is contained in:
Max Weber
2018-04-01 16:16:26 -04:00
committed by Adam
parent 6e80cff926
commit 103c3b87de
@@ -24,7 +24,7 @@
*/
grammar rs2asm;
prog: (header NEWLINE+)* (line NEWLINE+)+ ;
prog: NEWLINE* (header NEWLINE+)* (line NEWLINE+)+ ;
header: id | int_stack_count | string_stack_count | int_var_count | string_var_count ;