C# 클래스 Rhino.Ast.ErrorNode

AST node representing a parse error or a warning.
AST node representing a parse error or a warning. Node type is Rhino.Token.ERROR .

상속: AstNode
파일 보기 프로젝트 열기: hazzik/Rhino.Net

공개 메소드들

메소드 설명
ErrorNode ( ) : Rhino
ErrorNode ( int pos ) : Rhino
ErrorNode ( int pos, int len ) : Rhino
GetMessage ( ) : string

Returns error message key

SetMessage ( string message ) : void

Sets error message key

ToSource ( int depth ) : string
Visit ( NodeVisitor v ) : void

Error nodes are not visited during normal visitor traversals, but comply with the AstNode.Visit(NodeVisitor) interface.

메소드 상세

ErrorNode() 공개 메소드

public ErrorNode ( ) : Rhino
리턴 Rhino

ErrorNode() 공개 메소드

public ErrorNode ( int pos ) : Rhino
pos int
리턴 Rhino

ErrorNode() 공개 메소드

public ErrorNode ( int pos, int len ) : Rhino
pos int
len int
리턴 Rhino

GetMessage() 공개 메소드

Returns error message key
public GetMessage ( ) : string
리턴 string

SetMessage() 공개 메소드

Sets error message key
public SetMessage ( string message ) : void
message string
리턴 void

ToSource() 공개 메소드

public ToSource ( int depth ) : string
depth int
리턴 string

Visit() 공개 메소드

Error nodes are not visited during normal visitor traversals, but comply with the AstNode.Visit(NodeVisitor) interface.
public Visit ( NodeVisitor v ) : void
v NodeVisitor
리턴 void