We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
implements
1 parent c2a75f1 commit 507b2adCopy full SHA for 507b2ad
src/vm/wren_compiler.c
@@ -96,6 +96,7 @@ typedef enum
96
TOKEN_FOR,
97
TOKEN_FOREIGN,
98
TOKEN_IF,
99
+ TOKEN_IMPLEMENTS,
100
TOKEN_IMPORT,
101
TOKEN_AS,
102
TOKEN_IN,
@@ -608,6 +609,7 @@ static Keyword keywords[] =
608
609
{"for", 3, TOKEN_FOR},
610
{"foreign", 7, TOKEN_FOREIGN},
611
{"if", 2, TOKEN_IF},
612
+ {"implements", 10, TOKEN_IMPLEMENTS},
613
{"import", 6, TOKEN_IMPORT},
614
{"as", 2, TOKEN_AS},
615
{"in", 2, TOKEN_IN},
@@ -2791,6 +2793,7 @@ GrammarRule rules[] =
2791
2793
/* TOKEN_FOR */ UNUSED,
2792
2794
/* TOKEN_FOREIGN */ UNUSED,
2795
/* TOKEN_IF */ UNUSED,
2796
+ /* TOKEN_IMPLEMENTS */ UNUSED,
2797
/* TOKEN_IMPORT */ UNUSED,
2798
/* TOKEN_AS */ UNUSED,
2799
/* TOKEN_IN */ UNUSED,
0 commit comments