314315316317318319320321322323324
fileNode.initialize(this); } catch (Throwable t) { // Something went wrong, so log it. ICompilerProblem problem = new UnexpectedExceptionProblem(t); addProblem(problem); } return fileNode; }
268269270271272273274275
} } } catch (Exception e) { builder.addProblem(new UnexpectedExceptionProblem(e)); } }
281282283284285286287288289290291
{ if (outProblems == null) JSSharedData.instance.stderr(e.getMessage()); else { final ICompilerProblem unexpectedExceptionProblem = new UnexpectedExceptionProblem( e); problems.add(unexpectedExceptionProblem); } exitCode = ExitCode.FAILED_WITH_EXCEPTIONS; }
888990919293949596
return treeWalker.model; } catch (RecognitionException e) { assert false : "RecognitionException must be collected as ICompilerProblem."; problems.add(new UnexpectedExceptionProblem(e)); return null; } }
146147148149150151152153154155156
fileNode.getCSSCompilationSession().cssDocuments.addAll(cssDocumentList); } catch (Throwable e) { //something went wrong, so log it. problems.add(new UnexpectedExceptionProblem(e)); } finally { stopProfile(Operation.GET_SYNTAX_TREE); }
205206207208209210211212213214215