From a7da66f9a9c67b73f647cdf937b9d9d4dae26ea8 Mon Sep 17 00:00:00 2001 From: arookas Date: Mon, 28 Dec 2015 20:15:12 -0500 Subject: [PATCH] Added a parameterless overload to Push. --- ssc/scope stack.cs | 1 + 1 file changed, 1 insertion(+) 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)); }