We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f327c5d commit 01e4c9dCopy full SHA for 01e4c9d
1 file changed
Code/Helpers/NumericExpressionReslover.cs
@@ -130,12 +130,7 @@ uint tempId
130
var tmp = MakeTempName();
131
variables[tmp] = new(() =>
132
{
133
- if (parentheses.TryGetTokens().HasErrored(out var tokenizeError, out var tokensInParentheses))
134
- {
135
- return mainErr + tokenizeError;
136
- }
137
-
138
- if (CompileExpression(tokensInParentheses).HasErrored(out var conditonError, out var value))
+ if (CompileExpression(parentheses.Tokens).HasErrored(out var conditonError, out var value))
139
140
return mainErr + conditonError;
141
}
0 commit comments