Nicolas Cannasse il y a 19 ans
Parent
commit
db1730944e
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  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 )