addFromOffset method
void
addFromOffset()
Adds an entry mapping the targetOffset
to source
.
Implementation
void addFromOffset(SourceLocation source, SourceFile targetFile,
int targetOffset, String identifier) {
ArgumentError.checkNotNull(targetFile, 'targetFile');
_entries.add(Entry(source, targetFile.location(targetOffset), identifier));
}