getRightExpression method

DExpression getRightExpression()

Implementation

DExpression getRightExpression() {
  if (right is DExpression) {
    return right as DExpression;
  }
  throw ThisIsNotExpression();
}