Class Node
Base class for all AST Node.
Inheritance
System.Object
Node
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data.QueryLanguage.Syntax
Assembly: TimeCockpit.Data.dll
Syntax
public abstract class Node
Constructors
Node()
Declaration
protected Node()
Methods
Accept(Visitor)
dispatches a visitor to the node.
Declaration
public abstract Node Accept(Visitor visitor)
Parameters
Type | Name | Description |
---|---|---|
Visitor | visitor | the visitor to dispatch. |
Returns
Type | Description |
---|---|
Node | The modified node if it or any sub node was modified; otherwise, returns the original. |