C# 클래스 Veil.Parser.Nodes.BlockNode

A node that contains a sequence of other nodes
상속: SyntaxTreeNode
파일 보기 프로젝트 열기: namics/TerrificNet 1 사용 예제들

공개 메소드들

메소드 설명
Add ( SyntaxTreeNode node ) : void

Adds a new node to the block

AddRange ( IEnumerable nodes ) : void

Adds a set of nodes to the block

IsEmpty ( ) : bool

Determines if there are any nodes in the block already

LastNode ( ) : SyntaxTreeNode

Returns the last node in the block

메소드 상세

Add() 공개 메소드

Adds a new node to the block
public Add ( SyntaxTreeNode node ) : void
node SyntaxTreeNode
리턴 void

AddRange() 공개 메소드

Adds a set of nodes to the block
public AddRange ( IEnumerable nodes ) : void
nodes IEnumerable
리턴 void

IsEmpty() 공개 메소드

Determines if there are any nodes in the block already
public IsEmpty ( ) : bool
리턴 bool

LastNode() 공개 메소드

Returns the last node in the block
public LastNode ( ) : SyntaxTreeNode
리턴 SyntaxTreeNode