HTError.misplacedSuper constructor
HTError.misplacedSuper({})
Error: super appeared outside of a inherited class's instance method.
Implementation
HTError.misplacedSuper(
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.misplacedSuper, ErrorType.syntacticError,
message: HTLocale.current.errorMisplacedSuper,
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);