compiler: add support for enumerator interop package

This commit is contained in:
Roman Khimov 2020-05-18 13:20:49 +03:00
parent a0e9673c3e
commit 4e21e43e72

View file

@ -14,6 +14,12 @@ var syscalls = map[string]map[string]string{
"crypto": {
"ECDsaVerify": "Neo.Crypto.ECDsaVerify",
},
"enumerator": {
"Concat": "Neo.Enumerator.Concat",
"Create": "Neo.Enumerator.Create",
"Next": "Neo.Enumerator.Next",
"Value": "Neo.Enumerator.Value",
},
"storage": {
"GetContext": "Neo.Storage.GetContext",
"Put": "Neo.Storage.Put",