mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-01 23:45:50 +00:00
b4c0fcfaad
It helps us to keep the index clean and ordered. When some new RPC binding test should be added, we don't need to search for a suitable place for it. Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
33 lines
657 B
Go
33 lines
657 B
Go
package structs
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/interop"
|
|
"github.com/nspcc-dev/neo-go/pkg/interop/runtime"
|
|
)
|
|
|
|
func Main() {
|
|
runtime.Notify("! complicated name %$#", "str1")
|
|
}
|
|
|
|
func CrazyMap() {
|
|
runtime.Notify("SomeMap", map[int][]map[string][]interop.Hash160{})
|
|
}
|
|
|
|
func Struct() {
|
|
runtime.Notify("SomeStruct", struct {
|
|
I int
|
|
B bool
|
|
}{I: 123, B: true})
|
|
}
|
|
|
|
func Array() {
|
|
runtime.Notify("SomeArray", [][]int{})
|
|
}
|
|
|
|
// UnexportedField emits notification with unexported field that must be converted
|
|
// to exported in the resulting RPC binding.
|
|
func UnexportedField() {
|
|
runtime.Notify("SomeUnexportedField", struct {
|
|
i int
|
|
}{i: 123})
|
|
}
|