compiler: add support for enumerator interop package

This commit is contained in:
Roman Khimov 2020-05-18 13:20:49 +03:00
parent 8fb4bbca4e
commit d5d497ccd7

View file

@ -11,6 +11,12 @@ var syscalls = map[string]map[string]string{
"GetUsage": "Neo.Attribute.GetUsage",
"GetData": "Neo.Attribute.GetData",
},
"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",