cache: Allow scripts to start with comments

This commit is contained in:
Max Weber
2018-03-28 04:34:17 -06:00
committed by Adam
parent 6e80cff926
commit 103c3b87de

View File

@@ -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 ;