Skip to content

Commit

Permalink
Merge branch 'fix_decompose_assignment' of https://github.com/piux2/gno
Browse files Browse the repository at this point in the history
… into fix_decompose_assignment
  • Loading branch information
piux2 committed Jul 18, 2024
2 parents bb958e7 + 7db8fa9 commit e214285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnovm/pkg/gnolang/values.go
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ func (fv *FuncValue) GetBodyFromSource(store Store) []Stmt {
func (fv *FuncValue) UpdateBodyFromSource() {
if fv.Source == nil {
panic(fmt.Sprintf(
"Source is missing for FuncValue %s",
"Source is missing for FuncValue %q",
fv.Name))

Check warning on line 608 in gnovm/pkg/gnolang/values.go

View check run for this annotation

Codecov / codecov/patch

gnovm/pkg/gnolang/values.go#L606-L608

Added lines #L606 - L608 were not covered by tests
}
fv.body = fv.Source.GetBody()
Expand Down

0 comments on commit e214285

Please sign in to comment.