From 228dc80a0142fb9c6f34958be9279a31363e6b60 Mon Sep 17 00:00:00 2001 From: arookas Date: Mon, 1 Feb 2016 03:10:21 -0500 Subject: [PATCH] Call AnalyzeExpression directly Felt like saving a stack frame. Micro optimizations FTW --- ssc/ast/nodes.expressions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssc/ast/nodes.expressions.cs b/ssc/ast/nodes.expressions.cs index e31e452..18e43bf 100644 --- a/ssc/ast/nodes.expressions.cs +++ b/ssc/ast/nodes.expressions.cs @@ -67,7 +67,7 @@ namespace arookas { } sunExpressionFlags sunTerm.GetExpressionFlags(sunContext context) { - return Analyze(context); + return AnalyzeExpression(context, this); } }