summaryrefslogtreecommitdiff
path: root/vala/valagenietokentype.vala
diff options
context:
space:
mode:
authorJamie McCracken <jamiemcc gnome org>2009-04-14 11:17:42 -0400
committerJamie McCracken <jamiemcc gnome org>2009-04-14 11:25:24 -0400
commit73e8e6a6e905342ab92052c0d36ea827fe202d8f (patch)
tree7a89bfbf525fbf1d2f33927faf1ec257267f1ebe /vala/valagenietokentype.vala
parent8faaee83186459e0a77e33342f9a8011c39fa49b (diff)
downloadvala-73e8e6a6e905342ab92052c0d36ea827fe202d8f.tar.gz
Updated genie parser to match vala parser in functionality and bug fixes
Diffstat (limited to 'vala/valagenietokentype.vala')
-rw-r--r--vala/valagenietokentype.vala2
1 files changed, 2 insertions, 0 deletions
diff --git a/vala/valagenietokentype.vala b/vala/valagenietokentype.vala
index 5193c61ec..700902991 100644
--- a/vala/valagenietokentype.vala
+++ b/vala/valagenietokentype.vala
@@ -122,6 +122,7 @@ public enum Vala.Genie.TokenType {
OPEN_PARENS,
OVERRIDE,
OWNED,
+ PARAMS,
PASS,
PERCENT,
PLUS,
@@ -264,6 +265,7 @@ public enum Vala.Genie.TokenType {
case OPEN_PARENS: return "`('";
case OVERRIDE: return "`override'";
case OWNED: return "`owned'";
+ case PARAMS: return "`params'";
case PASS: return "`pass'";
case PERCENT: return "`%'";
case PLUS: return "`+'";