protected bool Equals(ThrowNode other) { return Equals(Expression, other.Expression); }
/// <summary> /// throw_stmt = "throw" [ line_expr ] /// </summary> private ThrowNode parseThrowStmt() { if (!check(LexemType.Throw)) return null; var node = new ThrowNode(); node.Expression = attempt(parseLineExpr); return node; }
protected bool Equals(ThrowNode other) { return(Equals(Expression, other.Expression)); }