C# Class MichaelReukauff.Lexer.Error

Inheritance: Token
显示文件 Open project: mreu/ProtobufLanguageService

Public Methods

Method Description
Error ( int line, Match match, CodeType codeType, string message ) : System.Diagnostics

Initializes a new instance of the Error class.

Error ( int line, int position, int length, string text, CodeType codeType, string message ) : System.Diagnostics

Initializes a new instance of the Error class.

Method Details

Error() public method

Initializes a new instance of the Error class.
public Error ( int line, Match match, CodeType codeType, string message ) : System.Diagnostics
line int The line.
match System.Text.RegularExpressions.Match The match.
codeType CodeType The code type.
message string The message.
return System.Diagnostics

Error() public method

Initializes a new instance of the Error class.
public Error ( int line, int position, int length, string text, CodeType codeType, string message ) : System.Diagnostics
line int The line.
position int The position.
length int The length.
text string The text.
codeType CodeType The code type.
message string The message.
return System.Diagnostics