diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2015-05-07 11:35:14 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2015-05-07 11:35:14 +0100 |
commit | 95a79d5f3bf3558fc671aad7b2c54f18a94b9f8c (patch) | |
tree | 654730e75d98123184ef2187db74fc59c81cb5fe /src/lib/eolian | |
parent | 7a49d23f90f41c478db9b7beb9763aa0cd74ae46 (diff) |
eolian: reserve @beta and @property
Diffstat (limited to '')
-rw-r--r-- | src/lib/eolian/eo_lexer.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/eolian/eo_lexer.h b/src/lib/eolian/eo_lexer.h index 5203045be6..3aee446ea1 100644 --- a/src/lib/eolian/eo_lexer.h +++ b/src/lib/eolian/eo_lexer.h | |||
@@ -29,10 +29,11 @@ enum Tokens | |||
29 | KW(get), KW(implements), KW(interface), KW(keys), KW(legacy), \ | 29 | KW(get), KW(implements), KW(interface), KW(keys), KW(legacy), \ |
30 | KW(legacy_prefix), KW(methods), KW(mixin), KW(own), KW(params), \ | 30 | KW(legacy_prefix), KW(methods), KW(mixin), KW(own), KW(params), \ |
31 | KW(properties), KW(set), KW(type), KW(values), KW(var), KWAT(auto), \ | 31 | KW(properties), KW(set), KW(type), KW(values), KW(var), KWAT(auto), \ |
32 | KWAT(c_only), KWAT(class), KWAT(const), KWAT(const_get), KWAT(const_set), \ | 32 | KWAT(beta), KWAT(c_only), KWAT(class), KWAT(const), KWAT(const_get), \ |
33 | KWAT(empty), KWAT(extern), KWAT(free), KWAT(in), KWAT(inout), KWAT(nonull), \ | 33 | KWAT(const_set), KWAT(empty), KWAT(extern), KWAT(free), KWAT(in), \ |
34 | KWAT(nullable), KWAT(optional), KWAT(out), KWAT(private), KWAT(protected), \ | 34 | KWAT(inout), KWAT(nonull), KWAT(nullable), KWAT(optional), KWAT(out), \ |
35 | KWAT(virtual), KWAT(warn_unused), \ | 35 | KWAT(private), KWAT(property), KWAT(protected), KWAT(virtual), \ |
36 | KWAT(warn_unused), \ | ||
36 | \ | 37 | \ |
37 | KW(byte), KW(ubyte), KW(char), KW(short), KW(ushort), KW(int), KW(uint), \ | 38 | KW(byte), KW(ubyte), KW(char), KW(short), KW(ushort), KW(int), KW(uint), \ |
38 | KW(long), KW(ulong), KW(llong), KW(ullong), \ | 39 | KW(long), KW(ulong), KW(llong), KW(ullong), \ |