else if(c == '*' || c == '/' || c == '+' || c == '-') {
if( !isValidToken(token, 3) ) throw new SmartScriptParserException();
tmp = new TokenOperator(token);
}
else if(c == '\"') {
tmp = new TokenString(token.substring(1, token.length()-1));
}
else {
if( !isValidToken(token, 0) ) throw new SmartScriptParserException();
tmp = new TokenVariable(token);
}