From 95a79d5f3bf3558fc671aad7b2c54f18a94b9f8c Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Thu, 7 May 2015 11:35:14 +0100 Subject: [PATCH] eolian: reserve @beta and @property --- src/lib/eolian/eo_lexer.h | 9 +++++---- 1 file 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 KW(get), KW(implements), KW(interface), KW(keys), KW(legacy), \ KW(legacy_prefix), KW(methods), KW(mixin), KW(own), KW(params), \ KW(properties), KW(set), KW(type), KW(values), KW(var), KWAT(auto), \ - KWAT(c_only), KWAT(class), KWAT(const), KWAT(const_get), KWAT(const_set), \ - KWAT(empty), KWAT(extern), KWAT(free), KWAT(in), KWAT(inout), KWAT(nonull), \ - KWAT(nullable), KWAT(optional), KWAT(out), KWAT(private), KWAT(protected), \ - KWAT(virtual), KWAT(warn_unused), \ + KWAT(beta), KWAT(c_only), KWAT(class), KWAT(const), KWAT(const_get), \ + KWAT(const_set), KWAT(empty), KWAT(extern), KWAT(free), KWAT(in), \ + KWAT(inout), KWAT(nonull), KWAT(nullable), KWAT(optional), KWAT(out), \ + KWAT(private), KWAT(property), KWAT(protected), KWAT(virtual), \ + KWAT(warn_unused), \ \ KW(byte), KW(ubyte), KW(char), KW(short), KW(ushort), KW(int), KW(uint), \ KW(long), KW(ulong), KW(llong), KW(ullong), \