This commit is contained in:
agra
2026-02-20 21:50:49 +02:00
parent 2f95810f9d
commit efa60fa670
12 changed files with 148 additions and 103 deletions

View File

@@ -197,7 +197,7 @@ pub const DocumentStore = struct {
.ty = sym.ty,
.def_span = sym.def_span,
.scope_depth = 0,
.origin = file_path,
.origin = sym.origin orelse file_path,
});
}
}
@@ -263,7 +263,7 @@ pub const DocumentStore = struct {
.ty = sym.ty,
.def_span = sym.def_span,
.scope_depth = 0,
.origin = imp.path,
.origin = sym.origin orelse imp.path,
});
}
}