C# Class GameMaker.FlowAnalysis.ControlFlowEdge

Represents an edge in the control flow graph, pointing from Source to Target.
Show file Open project: WarlockD/GMdsam Class Usage Examples

Public Properties

Property Type Description
Source ControlFlowNode
Target ControlFlowNode
Type JumpType

Public Methods

Method Description
ControlFlowEdge ( ControlFlowNode source, ControlFlowNode target ) : System
ControlFlowEdge ( ControlFlowNode source, ControlFlowNode target, JumpType type ) : System
ToString ( ) : string

Method Details

ControlFlowEdge() public method

public ControlFlowEdge ( ControlFlowNode source, ControlFlowNode target ) : System
source ControlFlowNode
target ControlFlowNode
return System

ControlFlowEdge() public method

public ControlFlowEdge ( ControlFlowNode source, ControlFlowNode target, JumpType type ) : System
source ControlFlowNode
target ControlFlowNode
type JumpType
return System

ToString() public method

public ToString ( ) : string
return string

Property Details

Source public property

public ControlFlowNode,GameMaker.FlowAnalysis Source
return ControlFlowNode

Target public property

public ControlFlowNode,GameMaker.FlowAnalysis Target
return ControlFlowNode

Type public property

public JumpType Type
return JumpType