script = script.trim();
if( language == null )
{
if( script.matches("\\w+" ) ) // A word character: [a-zA-Z_0-9]
{
compiledExpression = new SimpleVariableParameterExpression(script);
}
else
throw new UnsupportedOperationException("<arg> script='" + script
+ "' not yet implemented");
}