localBitSet.growToInclude(paramInt);
println("const unsigned long " + paramString + getBitsetName(i) + "_data_" + "[] = { " + localBitSet.toStringOfHalfWords() + " };");
String str = "// ";
for (int j = 0; j < localTokenManager.getVocabulary().size(); j++)
{
if (!localBitSet.member(j))
continue;
if ((this.grammar instanceof LexerGrammar))
{
if ((32 <= j) && (j < 127) && (j != 92))
str = str + this.charFormatter.escapeChar(j, true) + " ";