ed45ff98e3
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.
6 lines
109 B
Go
6 lines
109 B
Go
package util
|
|
|
|
// Equals is a mirror of `Equals` builtin.
|
|
func Equals(a, b interface{}) bool {
|
|
return true
|
|
}
|