neoneo-go/pkg/compiler/testdata/util/equals.go
Evgenii Stratonikov ed45ff98e3 compiler: process interop together with package
Closes #913.
Provide package info in the funcScope to check if function is defined
insided an interop package. As a good side-effect bytecode for builtins from `util`
is no longer emitted.

Related #941.
2020-06-09 12:41:33 +03:00

6 lines
109 B
Go

package util
// Equals is a mirror of `Equals` builtin.
func Equals(a, b interface{}) bool {
return true
}