Show / Hide Table of Contents

Class ParseTreeNonTerminalNode

A non-terminal node in a parse tree.

Inheritance
System.Object
ParseTreeNode
ParseTreeNonTerminalNode
Implements
ILocationProvider
Inherited Members
ParseTreeNode.Parent
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 class ParseTreeNonTerminalNode : ParseTreeNode, ILocationProvider

Constructors

| Improve this Doc View Source

ParseTreeNonTerminalNode(ParseTreeNode, String)

Initializes a new instance of the ParseTreeNonTerminalNode class.

Declaration
public ParseTreeNonTerminalNode(ParseTreeNode parent, string name)
Parameters
Type Name Description
ParseTreeNode parent

A parent of the node.

System.String name

A name of the non-terminal node.

| Improve this Doc View Source

ParseTreeNonTerminalNode(String)

Initializes a new instance of the ParseTreeNonTerminalNode class.

Declaration
public ParseTreeNonTerminalNode(string name)
Parameters
Type Name Description
System.String name

A name of the non-terminal node.

Properties

| Improve this Doc View Source

Children

Gets children of non-terminal.

Declaration
public List<ParseTreeNode> Children { get; }
Property Value
Type Description
System.Collections.Generic.List<ParseTreeNode>
| Improve this Doc View Source

EndColumnIndex

Gets or sets start column index.

Declaration
public int EndColumnIndex { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

FileName

Gets or set file name.

Declaration
public string FileName { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

LineNumber

Gets or sets line number.

Declaration
public int LineNumber { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Name

Gets name of non-terminal.

Declaration
public string Name { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

StartColumnIndex

Gets or sets start column index.

Declaration
public int StartColumnIndex { get; set; }
Property Value
Type Description
System.Int32

Implements

ILocationProvider
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX