Represents a location inside a resource, such as a line inside a text file.

interface Location {
    range: IRange;
    uri: Uri;
}

Properties

Properties

range: IRange

The document range of this locations.

uri: Uri

The resource identifier of this location.