println("*** Tokens used by the parser");
println("This is a list of the token numeric values and the corresponding");
println("token identifiers. Some tokens are literals, and because of that");
println("they have no identifiers. Literals are double-quoted.");
tabs++;
Vector v = tm.getVocabulary();
for (int i = 4; i < v.size(); i++)
{
String s = (String) v.elementAt(i);
if (s != null)
{
println(s + " = " + i);
}
}