File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 155
155
local Evaluator = {}
156
156
157
157
--- Creates a new Evaluator instance.
158
- --- @param givenExpression table The expression to evaluate.
158
+ --- @param givenExpression table ? The expression to evaluate.
159
159
--- @param givenVariables table ? The variables to use in the evaluator.
160
160
--- @param givenOperatorFunctions table ? The operator functions to evaluate in the evaluator.
161
161
--- @param givenFunctions table ? The functions to evaluate in the evaluator.
Original file line number Diff line number Diff line change 278
278
local Parser = {}
279
279
280
280
--- @class Creates a new Parser instance.
281
- --- @param tokens table The tokens to parse.
281
+ --- @param tokens table ? The tokens to parse.
282
282
--- @param operatorPrecedenceLevels table ? The operator precedence levels to use in the parser. Default is DEFAULT_OPERATOR_PRECEDENCE_LEVELS.
283
283
--- @param tokenIndex number ? The index of the current token. Default is 1.
284
284
--- @param expression string ? The expression to show during an error (e.g unexpected operator , etc. ).
You can’t perform that action at this time.
0 commit comments