The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
|
Encapsulates a switch label (Case + condition or Default section). More...
Public Member Functions | |
SwitchLabel (Expression cond, Location location) | |
Constructor of SwitchLabel More... | |
SwitchLabel (Location location) | |
Constructor of SwitchLabel More... | |
override Object | Accept (Visitor v, Object o) |
Accept method of a concrete visitor. More... | |
![]() | |
override object | AcceptOperation (AstOperation op, object arg) |
Dispatches expressions to the operation passed as argument. It provokes the execution of op.AcceptOperation(AstNode) with the parameter resolved polymorfically More... | |
![]() | |
override bool | Equals (object obj) |
AntLR compares Nodes with the class name. This is not correct for our purposes. More... | |
override int | GetHashCode () |
Properties | |
Expression | Condition [get] |
Gets the condition expression of Case statement. More... | |
SectionType | SwitchSectionType [get] |
Gets the type of the Case statement (case or default) More... | |
![]() | |
Location | Location [get] |
Additional Inherited Members | |
![]() | |
Statement (Location location) | |
Protected constructor of Statement. More... | |
![]() | |
AstNode (Location location) | |
Protected constructor of NodeAst More... | |
![]() | |
Location | location |
Location: Encapsulates in one object the line, column and filename More... | |
Encapsulates a switch label (Case + condition or Default section).
Inheritance: Statement. Implements Composite pattern [Composite]. Implements Visitor pattern [Concrete Element].
Definition at line 47 of file SwitchLabel.cs.
AST.SwitchLabel.SwitchLabel | ( | Expression | cond, |
Location | location | ||
) |
Constructor of SwitchLabel
cond | Condition expression of the Case statement. |
fileName | File name. |
lineNumber | Line number. |
columnNumber | Column number. |
Definition at line 92 of file SwitchLabel.cs.
AST.SwitchLabel.SwitchLabel | ( | Location | location | ) |
Constructor of SwitchLabel
fileName | File name. |
lineNumber | Line number. |
columnNumber | Column number. |
Definition at line 105 of file SwitchLabel.cs.
|
virtual |
Accept method of a concrete visitor.
v | Concrete visitor |
o | Optional information to use in the visit. |
Implements AST.AstNode.
Definition at line 121 of file SwitchLabel.cs.
|
get |
Gets the condition expression of Case statement.
Definition at line 69 of file SwitchLabel.cs.
|
get |
Gets the type of the Case statement (case or default)
Definition at line 77 of file SwitchLabel.cs.