Skip to content

Commit 58d43c3

Browse files
committed
Use improved type for including line in reference
Signed-off-by: worksofliam <mrliamallan@live.co.uk>
1 parent 97c9b25 commit 58d43c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

language/parserTypes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Declaration from './models/declaration';
2-
import { IRange } from './types';
2+
import { IRange, IRangeWithLine } from './types';
33
import { SymbolRegister } from './models/cache';
44

55
export interface Keywords {
@@ -68,7 +68,7 @@ export interface DefinitionPosition {
6868

6969
export interface Reference {
7070
uri: string;
71-
offset: IRange;
71+
offset: IRange|IRangeWithLine;
7272
}
7373

7474
export interface IssueRange {

0 commit comments

Comments
 (0)