mirror of
https://github.com/gbdev/rgbds.git
synced 2025-12-01 15:27:48 +00:00
Allow defining local labels for another scope (#1159)
fix #1157 for the following source code ``` section "hSAVE_locals",HRAM func3.hSpam: ds 1 ; no longer produces an error ;.hEggs: ds 1 ; uncomment this to see the new error section "demo",ROM0 func3: ldh a, [.hSpam] ret ``` Remove two errors: - `Not currently in the scope of 'func3'` - `Local label 'func3.hSpam' in main scope` Add one error: - `Relative local label '.hSpam' in main scope` Co-authored-by: Rangi <35663410+Rangi42@users.noreply.github.com>
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
error: sym-scope.asm(4):
|
||||
Local label '.tooSoon' in main scope
|
||||
error: sym-scope.asm(5):
|
||||
Local label 'Nice.try' in main scope
|
||||
error: sym-scope.asm(17):
|
||||
Not currently in the scope of 'Parentheses'
|
||||
error: sym-scope.asm(21):
|
||||
Not currently in the scope of 'Parent'
|
||||
error: Assembly aborted (4 errors)!
|
||||
|
||||
Reference in New Issue
Block a user