3334353637383940
Exception result = new Exception("404.xml"); render("errors/404.xml", result); } public static void expression() { Foo foo = new Foo(); render(foo); }
113114115116117118119120
String who = "Rythm"; render(who); } public static void testExtendsWithOutParams() { Foo foo = new Foo("test"); render(foo); }
3435363738394041
int[] vals = {1, 2, 3}; render(vals); } public static void i32() { Foo foo = new Foo(); render(foo); }
4748495051525354
public static void i44() { render(); } public static void groovy() { Foo foo = new Foo(); render(foo); }
5253545556575859
Foo foo = new Foo(); render(foo); } public static void p_i12() { Foo foo = new Foo("Hello"); render(foo); }
180181182183184185186187
public static void i94() { render(); } public static void i95() { Foo foo = new Foo("bar"); render(foo); }