2 public class Index extends enum {
3 public static const __isenum : Boolean = true;
4 public function Index( t : String, index : int, p : Array = null ) : void { this.tag = t; this.index = index; this.params = p; }
5 public static function Idx(v : int) : Index { return new Index("Idx",0,[v]); }