}
}
}
// some scanners are not perfect: With this, we can allow to combine two tokens into one
TYPE_ENUM typeToBeCombined = token.getDescription().combineWith(token.getContents());
if(typeToBeCombined!=null){
ILuposToken nextToken2 = parser.getNextToken(content);
if(nextToken2!=null){
if(nextToken2.getDescription() == typeToBeCombined){
token = token.create(token.getDescription(), content.substring(token.getBeginChar(), nextToken2.getBeginChar()+nextToken2.getContents().length()), token.getBeginChar());