goodbye = new (#17865)

This commit is contained in:
Cameron Lennox
2025-06-14 23:01:03 -07:00
committed by GitHub
parent 30dcd1b113
commit 45618b5e9e
30 changed files with 98 additions and 75 deletions
+3 -3
View File
@@ -15,7 +15,7 @@
Var: tokens
A list of tokens in the source code generated by a scanner.
*/
var/list/tokens = new
var/list/tokens = list()
/*
Var: errors
A list of fatal errors found by the parser. If there are any items in this list, then it is not safe to run the returned AST.
@@ -23,12 +23,12 @@
See Also:
- <scriptError>
*/
var/list/errors = new
var/list/errors = list()
/*
Var: warnings
A list of non-fatal problems in the script.
*/
var/list/warnings = new
var/list/warnings = list()
/*
Var: curToken
The token at <index> in <tokens>.