* #40: put back in fix for EOL-after-block - tests pass

This commit is contained in:
meisl 2021-06-13 20:10:35 +02:00
parent 32bad5df15
commit 3496a30528

View File

@ -74,8 +74,7 @@ register: 'A' | 'X' | 'Y' | 'AX' | 'AY' | 'XY' | 'Pc' | 'Pz' | 'Pn' | 'Pv' | 'R0
module : (directive | block | EOL)* EOF ;
//block: identifier integerliteral? '{' EOL (block_statement | EOL) * '}' (EOL | EOF) ;
block: identifier integerliteral? '{' EOL (block_statement | EOL) * '}' EOL ;
block: identifier integerliteral? '{' EOL (block_statement | EOL) * '}' (EOL | EOF) ;
block_statement: