Show / Hide Table of Contents

Class ParseTreeNode

A tree node in parse tree.

Inheritance
System.Object
ParseTreeNode
ParseTreeNonTerminalNode
ParseTreeTerminalNode
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 Source

ParseTreeNode()

Initializes a new instance of the ParseTreeNode class without the parent.

Declaration
protected ParseTreeNode()
| Improve this Doc View Source

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 Source

Parent

Gets the parent of the tree node.

Declaration
public ParseTreeNode Parent { get; }
Property Value
Type Description
ParseTreeNode
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX