Nicolas Cannasse 19 years ago
parent
commit
db1730944e
1 changed files with 3 additions and 0 deletions
  1. 3 0
      std/neko/Stack.hx

+ 3 - 0
std/neko/Stack.hx

@@ -56,6 +56,9 @@ class Stack {
 		return makeStack(untyped __dollar__excstack());
 	}
 
+	/**
+		Returns a representation of the stack as a printable string.
+	**/
 	public static function toString( stack : Array<StackItem> ) {
 		var b = new StringBuf();
 		for( s in stack )