Skip to content

Commit 93ac29c

Browse files
wiggin77RealyUniqueName
authored andcommitted
Update CallStack.hx (#12)
Fixes "too many arguments error" when calling ```CallStack.toString(arrStack)```
1 parent 06ceb2e commit 93ac29c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

format/js/haxe/CallStack.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ class CallStack {
102102
#else
103103
static public function callStack():Array<StackItem> throw "Not implemented. See https://github.com/RealyUniqueName/JStack/issues/10";
104104
static public function exceptionStack():Array<StackItem> throw "Not implemented. See https://github.com/RealyUniqueName/JStack/issues/10";
105-
static public function toString():String throw "Not implemented. See https://github.com/RealyUniqueName/JStack/issues/10";
105+
static public function toString(stack : Array<StackItem>):String throw "Not implemented. See https://github.com/RealyUniqueName/JStack/issues/10";
106106
#end
107107
}

0 commit comments

Comments
 (0)