The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
|
Encapsulates a Continue statement of our programming languages. More...
Public Member Functions | |
ContinueStatement (Location location) | |
Constructor of ContinueStatement 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 () |
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... | |
![]() | |
Location | Location [get] |
Encapsulates a Continue statement of our programming languages.
Inheritance: Statement. Implements Composite pattern [Leaf]. Implements Visitor pattern [Concrete Element].
Definition at line 34 of file ContinueStatement.cs.
AST.ContinueStatement.ContinueStatement | ( | Location | location | ) |
Constructor of ContinueStatement
fileName | File name. |
lineNumber | Line number. |
columnNumber | Column number. |
Definition at line 44 of file ContinueStatement.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 57 of file ContinueStatement.cs.