Class ParseTreeNode
A tree node in parse tree.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: SpiceSharpParser.Parsers.Netlist
Assembly: SpiceSharpParser.dll
Syntax
public abstract class ParseTreeNode
Constructors
| Improve this Doc View SourceParseTreeNode()
Initializes a new instance of the ParseTreeNode class without the parent.
Declaration
protected ParseTreeNode()
ParseTreeNode(ParseTreeNode)
Initializes a new instance of the ParseTreeNode class.
Declaration
protected ParseTreeNode(ParseTreeNode parent)
Parameters
Type | Name | Description |
---|---|---|
ParseTreeNode | parent | A parent of the tree node. |
Properties
| Improve this Doc View SourceParent
Gets the parent of the tree node.
Declaration
public ParseTreeNode Parent { get; }
Property Value
Type | Description |
---|---|
ParseTreeNode |