(L: Lexer, s: LexSave)
| 757 | return L.b * 0x10000 + L.i |
| 758 | } |
| 759 | function restoreLex(L: Lexer, s: LexSave): void { |
| 760 | L.i = s & 0xffff |
| 761 | L.b = s >>> 16 |
| 762 | } |
| 763 | |
| 764 | /** |
| 765 | * Parse a sequence of statements separated by ; & newline. Returns a flat list |
no outgoing calls
no test coverage detected