@@ -218,6 +218,10 @@ class Stack {
this.register = null;
}
+ Push(newValue) {
+ this.stack.push(newValue);
+ }
+
/**
* Implement }
*
@@ -242,7 +246,7 @@ class Stack {
* Swaps the top two values of the stack
*/
SwapTwo() {
-
+ // TODO