diff --git a/ssc/scope stack.cs b/ssc/scope stack.cs index 07d894e..ce00c43 100644 --- a/ssc/scope stack.cs +++ b/ssc/scope stack.cs @@ -27,6 +27,7 @@ namespace arookas { Push(sunScopeType.Script); // push global scope } + public void Push() { Push(Top.Type); } public void Push(sunScopeType type) { Stack.Add(new sunScope(type)); }