Ejemplo n.º 1
0
 private void parseComment(String word)
 {
     String[] tokens = CommandSplitter.split(word);
     if (tokens.Length != 2)
     {
         throw new ArgumentException("Invalid COMMENT specification: " + word);
     }
     gdef.comment(tokens[1]);
 }