The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
AST.TernaryExpression Class Reference

Encapsulates a ternary expression of our programming language. More...

Inheritance diagram for AST.TernaryExpression:
AST.Expression AST.Statement AST.AstNode

Public Member Functions

 TernaryExpression (Expression operand1, Expression operand2, Expression operand3, TernaryOperator op, Location location)
 Constructor of TernaryExpression More...
 
override Object Accept (Visitor v, Object o)
 Accept method of a concrete visitor. More...
 
- Public Member Functions inherited from AST.Expression
Expression CloneInit ()
 Clones the initialization of the current object. 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...
 
- Public Member Functions inherited from AST.Statement
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...
 
- Public Member Functions inherited from AST.AstNode
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 FirstOperand [get, set]
 Gets the first operand of the ternary expression More...
 
Expression SecondOperand [get, set]
 Gets the second operand of the ternary expression More...
 
Expression ThirdOperand [get, set]
 Gets the third operand of the ternary expression More...
 
TernaryOperator Operator [get]
 Gets the operator of the ternary expression More...
 
- Properties inherited from AST.Expression
TypeExpression ExpressionType [get, set]
 Gets or sets the type of the expression. More...
 
bool Lvalue [get, set]
 Gets or sets the lvalue. More...
 
bool LeftExpression [get, set]
 Gets or sets true if the expression is allocated in the left part of an assignment, false otherwise. More...
 
virtual TypeExpression ILTypeExpression [get]
 Gets the type expression to use in code generation. More...
 
- Properties inherited from AST.AstNode
Location Location [get]
 

Additional Inherited Members

- Protected Member Functions inherited from AST.Expression
 Expression (Location location)
 Protected constructor of Expresion. More...
 
- Protected Member Functions inherited from AST.Statement
 Statement (Location location)
 Protected constructor of Statement. More...
 
- Protected Member Functions inherited from AST.AstNode
 AstNode (Location location)
 Protected constructor of NodeAst More...
 
- Protected Attributes inherited from AST.Expression
TypeExpression frozenTypeExpression
 WriteType variable may change its type's substitution (e.g., field type variables) This attribute saves the type in an specific time (frozen). If this type's substitution changes, the frozen type does not. More...
 
- Protected Attributes inherited from AST.AstNode
Location location
 Location: Encapsulates in one object the line, column and filename More...
 

Detailed Description

Encapsulates a ternary expression of our programming language.

Inheritance: Expression. Implements Composite pattern [Composite]. Implements Visitor pattern [Concrete Element].

Definition at line 49 of file TernaryExpression.cs.

Constructor & Destructor Documentation

AST.TernaryExpression.TernaryExpression ( Expression  operand1,
Expression  operand2,
Expression  operand3,
TernaryOperator  op,
Location  location 
)

Constructor of TernaryExpression

Parameters
operand1First operand.
operand2Second operand.
operand3Third operand.
opOperator of the ternary expression.
fileNameFile name.
lineNumberLine number.
columnNumberColumn number.

Definition at line 126 of file TernaryExpression.cs.

Member Function Documentation

override Object AST.TernaryExpression.Accept ( Visitor  v,
Object  o 
)
virtual

Accept method of a concrete visitor.

Parameters
vConcrete visitor
oOptional information to use in the visit.
Returns
Optional information to return

Implements AST.AstNode.

Definition at line 145 of file TernaryExpression.cs.

Property Documentation

Expression AST.TernaryExpression.FirstOperand
getset

Gets the first operand of the ternary expression

Definition at line 81 of file TernaryExpression.cs.

TernaryOperator AST.TernaryExpression.Operator
get

Gets the operator of the ternary expression

Definition at line 108 of file TernaryExpression.cs.

Expression AST.TernaryExpression.SecondOperand
getset

Gets the second operand of the ternary expression

Definition at line 90 of file TernaryExpression.cs.

Expression AST.TernaryExpression.ThirdOperand
getset

Gets the third operand of the ternary expression

Definition at line 99 of file TernaryExpression.cs.


The documentation for this class was generated from the following file: