Skip to content

Commit

Permalink
Update CallStack.hx (#12)
Browse files Browse the repository at this point in the history
Fixes "too many arguments error" when calling ```CallStack.toString(arrStack)```
  • Loading branch information
wiggin77 authored and RealyUniqueName committed Oct 4, 2017
1 parent 06ceb2e commit 93ac29c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion format/js/haxe/CallStack.hx
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,6 @@ class CallStack {
#else
static public function callStack():Array<StackItem> throw "Not implemented. See https://github.com/RealyUniqueName/JStack/issues/10";
static public function exceptionStack():Array<StackItem> throw "Not implemented. See https://github.com/RealyUniqueName/JStack/issues/10";
static public function toString():String throw "Not implemented. See https://github.com/RealyUniqueName/JStack/issues/10";
static public function toString(stack : Array<StackItem>):String throw "Not implemented. See https://github.com/RealyUniqueName/JStack/issues/10";
#end
}

0 comments on commit 93ac29c

Please sign in to comment.