-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle multiple packages with the same name
- Loading branch information
1 parent
0599922
commit 275db58
Showing
4 changed files
with
171 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,4 +64,14 @@ var ( | |
juliaV1_9DepExtLibs = []types.Library{ | ||
{ID: "[email protected]", Name: "AbstractFFTs", Version: "1.3.1", Locations: []types.Location{{StartLine: 7, EndLine: 10}}}, | ||
} | ||
|
||
juliaV1_9ShadowedDepLibs = []types.Library{ | ||
{ID: "[email protected]", Name: "A", Version: "1.9.0", Locations: []types.Location{{StartLine: 7, EndLine: 8}}}, | ||
{ID: "[email protected]", Name: "B", Version: "1.9.0", Locations: []types.Location{{StartLine: 13, EndLine: 14}}}, | ||
{ID: "[email protected]", Name: "B", Version: "1.9.0", Locations: []types.Location{{StartLine: 15, EndLine: 16}}}, | ||
} | ||
|
||
juliaV1_9ShadowedDepDeps = []types.Dependency{ | ||
{ID: "[email protected]", DependsOn: []string{"[email protected]"}}, | ||
} | ||
) |
16 changes: 16 additions & 0 deletions
16
pkg/julia/manifest/testdata/shadowed_dep_v1.9/Manifest.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This file is machine-generated - editing it directly is not advised | ||
|
||
julia_version = "1.9.0" | ||
manifest_format = "2.0" | ||
project_hash = "f0a796fb78285c02ad123fec6e14c8bac09a2ccc" | ||
|
||
[[deps.A]] | ||
uuid = "ead4f63c-334e-11e9-00e6-e7f0a5f21b60" | ||
|
||
[deps.A.deps] | ||
B = "f41f7b98-334e-11e9-1257-49272045fb24" | ||
|
||
[[deps.B]] | ||
uuid = "f41f7b98-334e-11e9-1257-49272045fb24" | ||
[[deps.B]] | ||
uuid = "edca9bc6-334e-11e9-3554-9595dbb4349c" |