The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
|
Represents the error occurred while the source code is parsing. More...
Public Member Functions | |
ParserError (Location loc, string description) | |
Constructor of ParserError. More... | |
![]() | |
ErrorAdapter (Location location) | |
ErrorAdapter () | |
override bool | Equals (object obj) |
override int | GetHashCode () |
Additional Inherited Members | |
![]() | |
Location | location |
![]() | |
Location | Location [get] |
string | ErrorType [get] |
Gets the name for the error type. More... | |
string | Description [get, set] |
Gets the description for the error type. More... | |
![]() | |
string | ErrorType [get] |
Gets the name for the error type. More... | |
string | Description [get] |
Gets the description for the error type. More... | |
Represents the error occurred while the source code is parsing.
Definition at line 23 of file ParserError.cs.
ErrorManagement.ParserError.ParserError | ( | Location | loc, |
string | description | ||
) |
Constructor of ParserError.
fileName | File name. |
line | Line number. |
column | Column number. |
description | Error description. |
Definition at line 34 of file ParserError.cs.