onPart ::= catchPart {@link Block block}| 'on' type catchPart? {@link Block block}catchPart ::= 'catch' '(' {@link SimpleIdentifier exceptionParameter} (',' {@link SimpleIdentifier stackTraceParameter})? ')'@coverage dart.engine.ast
CatchClause: catch ( FormalParameter ) Block
The FormalParameter is represented by a {@link SingleVariableDeclaration}.
@since 2.0 @noinstantiate This class is not intended to be instantiated by clients.e.g.catch (ClassName $e) { },
CatchClause : catch ( Identifier [if Expression] ) Block
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|