this.mapWords(userWords, words);
// check for collisions with the reserved word list.
ReservedWordChecker checker = new ReservedWordChecker(words, false, this.lh);
module.treewalk(checker);
if (!checker.ok()) {
this.lh.report(LogHandler.LEVEL_ERROR, null,
"Encountered errors during c generation.");
return;
}