}
public void testAssertNoUnboundGlobals() throws Exception {
ExprRootNode<?> expr = (new ExpressionParser("BOO + 'aaa' + foo.GOO")).parseExpression();
Map<String, PrimitiveData> globals =
ImmutableMap.<String, PrimitiveData>of(
"BOO", StringData.forValue("boo"), "GOO", StringData.forValue("goo"),
"foo.MOO", StringData.forValue("moo"));