use /global/ sugar for bare globals, no leading /

This commit is contained in:
spookerton
2022-04-15 12:07:26 +01:00
parent ee67e174fb
commit 556331a6a3
215 changed files with 713 additions and 724 deletions

View File

@@ -3,14 +3,14 @@
/*
File: Keywords
*/
var/const/KW_FAIL = 0 //Fatal error; stop parsing entire script.
var/const/KW_PASS = 1 //OK
var/const/KW_ERR = 2 //Non-fatal error, keyword couldn't be handled properly. Ignore keyword but continue on.
var/const/KW_WARN = 3 //Warning
var/global/const/KW_FAIL = 0 //Fatal error; stop parsing entire script.
var/global/const/KW_PASS = 1 //OK
var/global/const/KW_ERR = 2 //Non-fatal error, keyword couldn't be handled properly. Ignore keyword but continue on.
var/global/const/KW_WARN = 3 //Warning
/*
var/const/Class: n_Keyword
var/const/Represents a special statement in the code triggered by a keyword.
var/global/const/Class: n_Keyword
var/global/const/Represents a special statement in the code triggered by a keyword.
*/
/*