Enum BranchArgumentKind
An enumeration of things a branch argument can be.
Namespace: Flame.Compiler
Assembly: Flame.Compiler.dll
Syntax
public enum BranchArgumentKind
  Fields
| Name | Description | 
|---|---|
| TryException | The branch argument passes the exception thrown by a 'try' flow's inner instruction to the target block. Only valid on exception branches of 'try' flows.  | 
      
| TryResult | The branch argument passes the result of a 'try' flow's inner instruction to the target block. Only valid on success branches of 'try' flows.  | 
      
| Value | The branch argument simply passes a value to a target basic block.  |