Class ParseError
Inheritance
System.Object
ParseError
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TinyPG
Assembly: OpenSilver.Compiler.TypeScriptDefToCSharp.dll
Syntax
[Serializable]
public class ParseError
Constructors
| Improve this Doc View SourceParseError()
Declaration
public ParseError()
ParseError(String, Int32, Int32, Int32, Int32, Int32)
Declaration
public ParseError(string message, int code, int line, int col, int pos, int length)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | |
System.Int32 | code | |
System.Int32 | line | |
System.Int32 | col | |
System.Int32 | pos | |
System.Int32 | length |
ParseError(String, Int32, ParseNode)
Declaration
public ParseError(string message, int code, ParseNode node)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | |
System.Int32 | code | |
ParseNode | node |
Properties
| Improve this Doc View SourceCode
Declaration
public int Code { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Column
Declaration
public int Column { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Length
Declaration
public int Length { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Line
Declaration
public int Line { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Message
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
System.String |
Position
Declaration
public int Position { get; }
Property Value
Type | Description |
---|---|
System.Int32 |