@Test
public void test100_2() throws Exception {
String source = "#set(Map<String, Map<String, String>> map = {'me':{'name':'jetbrick'}})\n";
source += "${map.me.name.length()}";
JetTemplate template = engine.createTemplate(source);
UnsafeCharArrayWriter out = new UnsafeCharArrayWriter();
template.render(new JetContext(), out);
Assert.assertEquals("8", out.toString());
}