412413414415416417418419420421422
else if(c == '\"') { tmp = new TokenString(token.substring(1, token.length()-1)); } else { if( !isValidToken(token, 0) ) throw new SmartScriptParserException(); tmp = new TokenVariable(token); } } } return tmp;