Function getSourceLocation [src]
Prototype
pub fn getSourceLocation(eb: ErrorBundle, index: SourceLocationIndex) SourceLocation
Parameters
eb: ErrorBundle
index: SourceLocationIndex
Source
pub fn getSourceLocation(eb: ErrorBundle, index: SourceLocationIndex) SourceLocation {
assert(index != .none);
return eb.extraData(SourceLocation, @intFromEnum(index)).data;
}