We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43df0d9 commit 83a3777Copy full SHA for 83a3777
CodingSeb.ExpressionEvaluator/ExpressionEvaluator.cs
@@ -3787,6 +3787,16 @@ public partial class StronglyTypedVariable
3787
public object Value { get; set; }
3788
}
3789
3790
+ public partial class SubExpression
3791
+ {
3792
+ public string Expression { get; set; }
3793
+
3794
+ public SubExpression(string expression)
3795
3796
+ Expression = expression;
3797
+ }
3798
3799
3800
public partial class ExpressionEvaluatorSyntaxErrorException : Exception
3801
{
3802
public ExpressionEvaluatorSyntaxErrorException()
0 commit comments