addLocation method
Adds an entry mapping target
to source
.
Implementation
void addLocation(
SourceLocation source, SourceLocation target, String? identifier) {
_entries.add(Entry(source, target, identifier));
}
Adds an entry mapping target
to source
.
void addLocation(
SourceLocation source, SourceLocation target, String? identifier) {
_entries.add(Entry(source, target, identifier));
}