Package | Description |
---|---|
gololang.ir |
Java package for golo IR tree elements.
|
org.eclipse.golo.compiler |
Provides access to the Golo compiler and supporting classes.
|
Modifier and Type | Method and Description |
---|---|
TryCatchFinally |
TryCatchFinally.catching(java.lang.Object block) |
TryCatchFinally |
TryCatchFinally.catching(java.lang.String exceptionId,
java.lang.Object block)
Defines the catch block.
|
static TryCatchFinally |
TryCatchFinally.create(java.lang.String exceptionName,
GoloElement<?> tryBlock,
GoloElement<?> catchBlock,
GoloElement<?> finallyBlock)
Creates a complete
try catch finally statement. |
TryCatchFinally |
TryCatchFinally.finalizing(java.lang.Object block)
Defines the finally block.
|
protected TryCatchFinally |
TryCatchFinally.self() |
static TryCatchFinally |
TryCatchFinally.tryCatch()
Creates an empty
try catch finally statement. |
TryCatchFinally |
TryCatchFinally.trying(java.lang.Object block)
Defines the try block.
|
Modifier and Type | Method and Description |
---|---|
void |
GoloIrVisitor.visitTryCatchFinally(TryCatchFinally tryCatchFinally) |
void |
AbstractGoloIrVisitor.visitTryCatchFinally(TryCatchFinally tryCatchFinally) |
void |
Visitors.DispatchIrVisitor.visitTryCatchFinally(TryCatchFinally elt) |
void |
IrTreeDumper.visitTryCatchFinally(TryCatchFinally tryCatchFinally) |
Modifier and Type | Method and Description |
---|---|
void |
ClosureCaptureGoloIrVisitor.visitTryCatchFinally(TryCatchFinally tryCatchFinally) |