ltzmaxwell

Results 91 comments of ltzmaxwell

should fix in realm..

close in favor of #4385

seems to be a related one, it panics but should not: ```go package main type B interface { B() } type A interface { B C() } type aImpl struct{}...

this looks work, please double check. (for you reference.) ```diff --- a/gnovm/pkg/gnolang/types.go +++ b/gnovm/pkg/gnolang/types.go @@ -991,9 +991,8 @@ func (it *InterfaceType) FindEmbeddedFieldType(callerPath string, n Name, m map[ if !isUpper(string(n)) &&...

> The approach looks good in intent (keeping the last line simply in the machine), though maybe we should keep the tracking in OpExec / OpEval? yeah, sounds more correct:...

i think this is the one targeting this issue. thank you for reporting this. https://github.com/gnolang/gno/pull/3990

It appears to be a false alarm. Thank @MikaelVallenet for the comment and the code — they already convey the intended idea. There’s potential to reduce the cost of the...

this is what it behaves in master, seems not a bug, nor related to #4861: ```go package main type A interface { F() } type B interface { X() G()...