C# Class ComponentFactory.Quicksilver.Binding.EvalNodeShiftOp

EvalNode that represents a bitwise shift operation.
Inheritance: EvalNode
Show file Open project: ComponentFactory/Quicksilver Class Usage Examples

Private Properties

Property Type Description
EvalShiftOp EvalResult
EvalShiftOp EvalResult
EvalShiftOp EvalResult
EvalShiftOp EvalResult
EvalShiftOp EvalResult

Public Methods

Method Description
EvalNodeShiftOp ( ShiftOp operation, EvalNode child, System.Language language ) : System

Instantiate a new instance of the EvalNodeShiftOp node.

Evaluate ( object thisObject ) : EvalResult

Evalaute this node and return result.

ToString ( ) : string

Human readable version of the algebraic expression.

Private Methods

Method Description
EvalShiftOp ( Int16 x, int count ) : EvalResult
EvalShiftOp ( Int32 x, int count ) : EvalResult
EvalShiftOp ( System.Int64 x, int count ) : EvalResult
EvalShiftOp ( UInt32 x, int count ) : EvalResult
EvalShiftOp ( System.UInt64 x, int count ) : EvalResult

Method Details

EvalNodeShiftOp() public method

Instantiate a new instance of the EvalNodeShiftOp node.
public EvalNodeShiftOp ( ShiftOp operation, EvalNode child, System.Language language ) : System
operation ShiftOp Specifies the shift operation to represent.
child EvalNode Specifies the first child node.
language System.Language Language used for evaluation.
return System

Evaluate() public method

Evalaute this node and return result.
public Evaluate ( object thisObject ) : EvalResult
thisObject object Reference to object that is exposed as 'this'.
return EvalResult

ToString() public method

Human readable version of the algebraic expression.
public ToString ( ) : string
return string