SourceLocation class Null safety
The SourceLocation
class is used to designate a position or range in some
script.
Constructors
- SourceLocation({required ScriptRef? script, required int? tokenPos, int? endTokenPos})
Properties
- endTokenPos ↔ int?
-
The last token of the location if this is a range.
@optional, read / write
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
-
json
↔ Map<
String, dynamic> ? -
read / write, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- script ↔ ScriptRef?
-
The script containing the source location.
read / write
- tokenPos ↔ int?
-
The first token of the location.
read / write
- type → String
-
read-only, override
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toJson(
) → Map< String, dynamic> -
override
-
toString(
) → String -
A string representation of this object. [...]
override
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited
Static Methods
-
parse(
Map< String, dynamic> ? json) → SourceLocation? -
override