private void InitBlock(HighlighterTest enclosingInstance) { this.enclosingInstance = enclosingInstance; lst = new System.Collections.ArrayList(); Token t; t = new Token("hi", 0, 2); lst.Add(t); t = new Token("hispeed", 0, 8); lst.Add(t); t = new Token("speed", 3, 8); t.SetPositionIncrement(0); lst.Add(t); t = new Token("10", 8, 10); lst.Add(t); t = new Token("foo", 11, 14); lst.Add(t); iter = lst.GetEnumerator(); }
public AnonymousClassTokenStream(HighlighterTest enclosingInstance) { InitBlock(enclosingInstance); }