Package | Description |
---|---|
com.sun.tools.javac.parser | |
com.sun.tools.javac.tree |
Modifier and Type | Method and Description |
---|---|
protected JCTree.JCCatch |
JavacParser.catchClause()
CatchClause = CATCH "(" FormalParameter ")" Block
TODO: the "FormalParameter" is not correct, it uses the special "catchTypes" rule below.
|
Modifier and Type | Field and Description |
---|---|
List<JCTree.JCCatch> |
JCTree.JCTry.catchers |
Modifier and Type | Method and Description |
---|---|
JCTree.JCCatch |
JCTree.Factory.Catch(JCTree.JCVariableDecl param,
JCTree.JCBlock body) |
JCTree.JCCatch |
TreeMaker.Catch(JCTree.JCVariableDecl param,
JCTree.JCBlock body) |
Modifier and Type | Method and Description |
---|---|
List<JCTree.JCCatch> |
JCTree.JCTry.getCatches() |
List<JCTree.JCCatch> |
TreeTranslator.translateCatchers(List<JCTree.JCCatch> trees)
Visitor method: translate a list of catch clauses in try statements.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
TreeInfo.isMultiCatch(JCTree.JCCatch catchClause) |
void |
JCTree.Visitor.visitCatch(JCTree.JCCatch that) |
void |
Pretty.visitCatch(JCTree.JCCatch tree) |
void |
TreeScanner.visitCatch(JCTree.JCCatch tree) |
void |
TreeTranslator.visitCatch(JCTree.JCCatch tree) |
Modifier and Type | Method and Description |
---|---|
List<JCTree.JCCatch> |
TreeTranslator.translateCatchers(List<JCTree.JCCatch> trees)
Visitor method: translate a list of catch clauses in try statements.
|
JCTree.JCTry |
JCTree.Factory.Try(JCTree.JCBlock body,
List<JCTree.JCCatch> catchers,
JCTree.JCBlock finalizer) |
JCTree.JCTry |
TreeMaker.Try(JCTree.JCBlock body,
List<JCTree.JCCatch> catchers,
JCTree.JCBlock finalizer) |
Copyright © 2017 earcam. All rights reserved.