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
Показать файл Открыть проект

Открытые методы

Метод Описание
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