Change function references from aeso_sophia to aeb_aevm_data

This commit is contained in:
Robert Virding
2019-03-27 18:28:34 +01:00
parent 0528ee1229
commit 333bf53537
5 changed files with 35 additions and 5 deletions
+30
View File
@@ -0,0 +1,30 @@
-module(aeb_aevm_data).
-export_type([data/0,
type/0,
heap/0]).
-type type() :: word | signed_word | string | typerep | function
| {list, type()}
| {option, type()}
| {tuple, [type()]}
| {variant, [[type()]]}.
-type data() :: none
| {some, data()}
| {option, data()}
| word
| string
| {list, data()}
| {tuple, [data()]}
| {variant, integer(), [data()]}
| integer()
| binary()
| [data()]
| {}
| {data()}
| {data(), data()}.
-type heap() :: binary().