if(ctx.getCharacter() != '=') {
getHandler(ctx.getCharacter()).handle(ctx);
}
}});
putHandler(' ', GlobalCharacterHandlers.LEAVE_STATE_HANDLER);
enterState('[', new DefaultStateWithEndCharacter("BRACKETS", ']', false, true, enterStateHandlers));
enterState('(', new DefaultStateWithEndCharacter("PARENTHESIS", ')', false, true, enterStateHandlers));
enterState('{', new DefaultStateWithEndCharacter("BRACES", '}', false, true, enterStateHandlers));
if(!Util.isWindows()) {
// on windows we don't escape, this would mess up file system paths for example.
enterState('\\', EscapeCharacterState.INSTANCE);
enterState('"', QuotesState.QUOTES_INCLUDED);
} else {