1: doctype "../grammars/EJ.g.etl" context "MethodContent";
     2: // asserts
     3: assert a<b;
     4: assert a<b:"value check "+a+" < "+b;
     5: assert a<b: a-b;
     6: // throws
     7: throw new RuntimeException("tests");
     8: throw ex as RuntimeException;
     9: throw ex;
    10: // returns
    11: return a;
    12: return;
    13: return new String(a);
    14: