Browse Source

Don't make native iterator callable... yet. Still needs work

Justin Donaldson 9 years ago
parent
commit
b1519edbbc
1 changed files with 0 additions and 1 deletions
  1. 0 1
      std/lua/NativeIterator.hx

+ 0 - 1
std/lua/NativeIterator.hx

@@ -28,7 +28,6 @@ package lua;
 	Haxe iterators, which provide a next/hasNext interface.
 	Haxe iterators, which provide a next/hasNext interface.
 **/
 **/
 
 
-@:callable
 abstract NativeIterator<T>(HaxeIterator<T>) {
 abstract NativeIterator<T>(HaxeIterator<T>) {
 	public function new(f : Void->T) {
 	public function new(f : Void->T) {
 		this = new HaxeIterator(f);
 		this = new HaxeIterator(f);