"['IdPatt',{'name':'t'}]," +
"['IdExpr',{'name':'x'}]]]]";
private void testSuccess(JsonML source) throws Exception {
SecureCompiler compiler = new SecureCompiler();
compiler.compile(source);
Report report = compiler.getReport();
assertTrue(report.isSuccessful());
assertEquals(0, report.getErrors().length);
assertEquals(0, report.getWarnings().length);
}