-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: gfanton <[email protected]>
- Loading branch information
Showing
24 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
contribs/gnodev/pkg/packages/testdata/abc.xy/nested/aa/file.gno
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 @@ | ||
package aa |
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 @@ | ||
module abc.xy/nested/aa |
1 change: 0 additions & 1 deletion
1
contribs/gnodev/pkg/packages/testdata/abc.xy/nested/nested/b/file.gno
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
contribs/gnodev/pkg/packages/testdata/abc.xy/nested/nested/b/gno.mod
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
contribs/gnodev/pkg/packages/testdata/abc.xy/nested/nested/bb/file.gno
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 @@ | ||
package bb |
1 change: 1 addition & 0 deletions
1
contribs/gnodev/pkg/packages/testdata/abc.xy/nested/nested/bb/gno.mod
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 @@ | ||
module abc.xy/nested/nested/bb |
1 change: 0 additions & 1 deletion
1
contribs/gnodev/pkg/packages/testdata/abc.xy/nested/nested/c/file.gno
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
contribs/gnodev/pkg/packages/testdata/abc.xy/nested/nested/c/gno.mod
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
contribs/gnodev/pkg/packages/testdata/abc.xy/nested/nested/cc/file.gno
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 @@ | ||
package cc |
1 change: 1 addition & 0 deletions
1
contribs/gnodev/pkg/packages/testdata/abc.xy/nested/nested/cc/gno.mod
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 @@ | ||
module abc.xy/nested/nested/cc |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...g/packages/testdata/abc.xy/pkg/a/file.gno → .../packages/testdata/abc.xy/pkg/aa/file.gno
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package a | ||
package aa | ||
|
||
type SA struct{} |
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 @@ | ||
module abc.xy/pkg/aa |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
package bb | ||
|
||
import "abc.xy/pkg/aa" | ||
|
||
type SB = aa.SA |
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 @@ | ||
module abc.xy/pkg/bb |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
package cc | ||
|
||
import "abc.xy/pkg/bb" | ||
|
||
type SC = bb.SB |
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 @@ | ||
module abc.xy/pkg/cc |
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