mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-29 06:17:48 +00:00
Deprecate IMPORT keyword
IMPORT is simply useless, any symbol that isn't found in the current file is automatically flagged as imported symbol. Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
@@ -772,7 +772,13 @@ import_list : import_list_entry
|
||||
| import_list_entry ',' import_list
|
||||
;
|
||||
|
||||
import_list_entry : T_ID { sym_Import($1); }
|
||||
import_list_entry : T_ID {
|
||||
/* This is done automatically if
|
||||
* the label isn't found in the
|
||||
* list of defined symbols. */
|
||||
if( nPass==1 )
|
||||
warning("IMPORT is a deprecated keyword with no effect: %s", $1);
|
||||
}
|
||||
;
|
||||
|
||||
export : T_POP_EXPORT export_list
|
||||
|
||||
Reference in New Issue
Block a user