Skip to content

Commit 6d66d75

Browse files
committed
Dirty fix for the issue raised in #473
1 parent 3e24e3d commit 6d66d75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Engine/Helper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ internal set
100100
/// </summary>
101101
private Dictionary<Ast, VariableAnalysis> VariableAnalysisDictionary;
102102

103-
private string[] functionScopes = new string[] { "global:", "local:", "script:", "private:" };
103+
private string[] functionScopes = new string[] { "global:", "local:", "script:", "private:", "Global:", "Local:", "Script:", "Private:" };
104104

105-
private string[] variableScopes = new string[] { "global:", "local:", "script:", "private:", "variable:", ":" };
105+
private string[] variableScopes = new string[] { "global:", "local:", "script:", "private:", "variable:", ":", "Global:", "Local:", "Script:", "Private:", "Variable:" };
106106

107107
#endregion
108108

@@ -3022,4 +3022,4 @@ public object VisitUsingExpression(UsingExpressionAst usingExpressionAst)
30223022
return null;
30233023
}
30243024
}
3025-
}
3025+
}

0 commit comments

Comments
 (0)