summaryrefslogtreecommitdiff
path: root/src/scripts
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@samsung.com>2019-02-28 20:25:51 +0100
committerDaniel Kolesa <d.kolesa@samsung.com>2019-02-28 20:28:24 +0100
commit4b1622b5fc7c6aaafb4d70f187ec5ea797275a26 (patch)
tree85c9efcc04cbc54d2ecee1cc59750087e986e021 /src/scripts
parent66bb52c8cae1c90e33522e058b1ececcf291e90d (diff)
downloadefl-4b1622b5fc7c6aaafb4d70f187ec5ea797275a26.tar.gz
eolian: remove support for inlist/inarray
This feature was kind of ill-conceived and never worked properly. Since there isn't enough time to make it work right at this point and there are no users of it in the API, remove it for now. It might get added in the next release cycle, in a proper form. @feature
Diffstat (limited to 'src/scripts')
-rw-r--r--src/scripts/pyolian/eolian.py24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/scripts/pyolian/eolian.py b/src/scripts/pyolian/eolian.py
index 0df4bc8f10..0df6ee8884 100644
--- a/src/scripts/pyolian/eolian.py
+++ b/src/scripts/pyolian/eolian.py
@@ -116,17 +116,18 @@ class Eolian_Type_Builtin_Type(IntEnum):
DOUBLE = 29
BOOL = 30
- VOID = 31
- ACCESSOR = 32
- ARRAY = 33
- ITERATOR = 34
- HASH = 35
- LIST = 36
- INARRAY = 37
- INLIST = 38
+ SLICE = 31
+ RW_SLICE = 32
- FUTURE = 39
+ VOID = 33
+
+ ACCESSOR = 34
+ ARRAY = 35
+ FUTURE = 36
+ ITERATOR = 37
+ HASH = 38
+ LIST = 39
ANY_VALUE = 40
ANY_VALUE_PTR = 41
@@ -134,9 +135,10 @@ class Eolian_Type_Builtin_Type(IntEnum):
MSTRING = 42
STRING = 43
STRINGSHARE = 44
+ STRBUF = 45
- VOID_PTR = 45
- FREE_CB = 46
+ VOID_PTR = 46
+ FREE_CB = 47
class Eolian_C_Type_Type(IntEnum):
DEFAULT = 0