Home | History | Annotate | Download | only in runtime

Lines Matching refs:EOT

15 		protected var eot:Array; // short[]
33 eot:Array, eof:Array, min:Array, max:Array, accept:Array, special:Array, transition:Array,
39 this.eot = eot;
100 // must check EOT, which is like the else clause.
101 // eot[s]>=0 indicates that an EOT edge goes to another
103 if ( eot[s]>=0 ) { // EOT Transition to accept state?
104 if ( debug ) trace("EOT transition");
105 s = eot[s];
107 // TODO: I had this as return accept[eot[s]]
108 // which assumed here that the EOT edge always
110 // what about predicated edges coming from EOT
121 if ( eot[s]>=0 ) { // EOT Transition?
122 if ( debug ) trace("EOT transition");
123 s = eot[s];
131 // not in range and not EOF/EOT, must be invalid symbol
135 trace("eot["+s+"]="+eot[s]);