HTError.unexpected constructor
HTError.unexpected(})
Error: Expected a token while met another.
Implementation
HTError.unexpected(String whileParsing, String expected, String met,
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.unexpected, ErrorType.syntacticError,
message: HTLocale.current.errorUnexpected,
interpolations: [whileParsing, expected, met],
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);