28 this.nullCheck = NullCheck;
32 public override bool Equals(
object obj)
35 this.nullCheck.
Equals(O.nullCheck) &&
42 int Result = base.GetHashCode();
43 Result ^= Result << 5 ^ this.nullCheck.GetHashCode();
Class managing a script expression.
Base class for all unary operators performing operand null checks.
override bool Equals(object obj)
readonly bool nullCheck
If null should be returned if operand is null.
NullCheckTernaryOperator(ScriptNode Left, ScriptNode Middle, ScriptNode Right, bool NullCheck, int Start, int Length, Expression Expression)
Base class for all unary operators performing operand null checks.
override int GetHashCode()
Base class for all nodes in a parsed script tree.
int Length
Length of expression covered by node.
int Start
Start position in script expression.
Base class for all ternary operators.