The following program produces the following incorrect parse tree (final NODE_LABEL should be NODE_INSTRUCTION).
```asm
; initial basic input to test encoding
.export _start
_start:
ret
```
```
NODE_PROGRAM
NODE_DIRECTIVE
NODE_DOT "."
NODE_EXPORT_DIRECTIVE
NODE_EXPORT "export"
NODE_IDENTIFIER "_start"
NODE_LABEL
NODE_IDENTIFIER "_start"
NODE_COLON ":"
NODE_LABEL
NODE_IDENTIFIER "ret"
```
omicron
added the bug label 2025-04-15 23:22:34 +00:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
The following program produces the following incorrect parse tree (final NODE_LABEL should be NODE_INSTRUCTION).
fixed by #17