C# 클래스 Rhino.Ast.ErrorCollector

An error reporter that gathers the errors and warnings for later display.
An error reporter that gathers the errors and warnings for later display. This a useful Rhino.ErrorReporter when the Rhino.CompilerEnvirons is set to ide-mode (for IDEs).
상속: IdeErrorReporter
파일 보기 프로젝트 열기: hazzik/Rhino.Net

공개 메소드들

메소드 설명
Error ( string message, string sourceName, int fileOffset, int length ) : void
Error ( string message, string sourceName, int line, string lineSource, int lineOffset ) : void

This is not called during AST generation.

This is not called during AST generation. Warning(string, string, int, int) is used instead.

GetErrors ( ) : IList

Returns the list of errors and warnings produced during parsing.

Returns the list of errors and warnings produced during parsing.

RuntimeError ( string message, string sourceName, int line, string lineSource, int lineOffset ) : EvaluatorException
ToString ( ) : string
Warning ( string message, string sourceName, int offset, int length ) : void
Warning ( string message, string sourceName, int line, string lineSource, int lineOffset ) : void

This is not called during AST generation.

This is not called during AST generation. Warning(string, string, int, int) is used instead.

메소드 상세

Error() 공개 메소드

public Error ( string message, string sourceName, int fileOffset, int length ) : void
message string
sourceName string
fileOffset int
length int
리턴 void

Error() 공개 메소드

This is not called during AST generation.
This is not called during AST generation. Warning(string, string, int, int) is used instead.
System.NotSupportedException
public Error ( string message, string sourceName, int line, string lineSource, int lineOffset ) : void
message string
sourceName string
line int
lineSource string
lineOffset int
리턴 void

GetErrors() 공개 메소드

Returns the list of errors and warnings produced during parsing.
Returns the list of errors and warnings produced during parsing.
public GetErrors ( ) : IList
리턴 IList

RuntimeError() 공개 메소드

public RuntimeError ( string message, string sourceName, int line, string lineSource, int lineOffset ) : EvaluatorException
message string
sourceName string
line int
lineSource string
lineOffset int
리턴 Rhino.EvaluatorException

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

Warning() 공개 메소드

public Warning ( string message, string sourceName, int offset, int length ) : void
message string
sourceName string
offset int
length int
리턴 void

Warning() 공개 메소드

This is not called during AST generation.
This is not called during AST generation. Warning(string, string, int, int) is used instead.
System.NotSupportedException
public Warning ( string message, string sourceName, int line, string lineSource, int lineOffset ) : void
message string
sourceName string
line int
lineSource string
lineOffset int
리턴 void