Explorar el Código

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

Justin Donaldson hace 9 años
padre
commit
b1519edbbc
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  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.
 **/
 
-@:callable
 abstract NativeIterator<T>(HaxeIterator<T>) {
 	public function new(f : Void->T) {
 		this = new HaxeIterator(f);