Skip to content

Commit

Permalink
fix(genstd): allow native injections in all packages and regen
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Meier <[email protected]>
  • Loading branch information
n0izn0iz committed Dec 10, 2024
1 parent c6728c5 commit 4374a39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions gnovm/stdlibs/generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions misc/genstd/package_sort.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ func sortPackages(pkgs []*pkgData) []string {
if slices.Contains(res, imp) {
continue
}
if pkg.importPath == "testing" &&
slices.Contains(nativeInjections, imp) {
if slices.Contains(nativeInjections, imp) {
continue
}

Expand Down

0 comments on commit 4374a39

Please sign in to comment.