core: adjust System.Storage.PutEx interop

Part of #1055.

Added System.Storage.PutEx to compiler. Added StorageFlag in order to
denote whether item is constant or not.
This commit is contained in:
Anna Shaleva 2020-07-22 11:22:58 +03:00
parent 47eadcdf2a
commit 84bf87df52
3 changed files with 20 additions and 1 deletions

View file

@ -77,5 +77,6 @@ var syscalls = map[string]map[string]Syscall{
"GetContext": {"System.Storage.GetContext", false},
"GetReadOnlyContext": {"System.Storage.GetReadOnlyContext", false},
"Put": {"System.Storage.Put", false},
"PutEx": {"System.Storage.PutEx", false},
},
}