Example #1
0
 public static List<Token> AnalyzeString(Language language, string value)
 {
     List<Token> toks = new List<Token>();
       Tokenizer tkz = new Tokenizer(language);
       tkz.SetText(value);
       for (; ; ) {
     Token tk = tkz.ReadToken();
     if (tk == null)
       break;
     if (tk.Type == (int)TokenType.Comments ||
     tk.Type == (int)TokenType.DocComments)
       continue;
     toks.Add(tk);
       }
       return toks;
 }