Browse Source

[lua] add todo for abstract table

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

+ 1 - 0
std/lua/Table.hx

@@ -3,6 +3,7 @@ package lua;
 /**
 /**
 	This library provides generic functions for table manipulation.
 	This library provides generic functions for table manipulation.
 **/
 **/
+// TODO: use an abstract here?
 @:native("_G.table")
 @:native("_G.table")
 extern class Table<A,B> implements ArrayAccess<B> implements Dynamic<B> {
 extern class Table<A,B> implements ArrayAccess<B> implements Dynamic<B> {
 	public inline static function create<A,B>(?arr:Array<B>, ?hsh:Dynamic<B>) : Table<A,B> {
 	public inline static function create<A,B>(?arr:Array<B>, ?hsh:Dynamic<B>) : Table<A,B> {