Skip to content

Commit

Permalink
PHP: add new keywords to missing test (#8801)
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer committed Jul 8, 2021
1 parent 0444e07 commit 2126123
Showing 1 changed file with 47 additions and 43 deletions.
90 changes: 47 additions & 43 deletions php/tests/proto/test_reserved_enum_value_upper.proto
Original file line number Diff line number Diff line change
Expand Up @@ -33,47 +33,51 @@ enum NotAllowed {
EXIT = 27;
EXTENDS = 28;
FINAL = 29;
FOR = 30;
FOREACH = 31;
FUNCTION = 32;
GLOBAL = 33;
GOTO = 34;
IF = 35;
IMPLEMENTS = 36;
INCLUDE = 37;
INCLUDE_ONCE = 38;
INSTANCEOF = 39;
INSTEADOF = 40;
INTERFACE = 41;
ISSET = 42;
LIST = 43;
NAMESPACE = 44;
NEW = 45;
OR = 46;
PRINT = 47;
PRIVATE = 48;
PROTECTED = 49;
PUBLIC = 50;
REQUIRE = 51;
REQUIRE_ONCE = 52;
RETURN = 53;
STATIC = 54;
SWITCH = 55;
THROW = 56;
TRAIT = 57;
TRY = 58;
UNSET = 59;
USE = 60;
VAR = 61;
WHILE = 62;
XOR = 63;
INT = 64;
FLOAT = 65;
BOOL = 66;
STRING = 67;
TRUE = 68;
FALSE = 69;
NULL = 70;
VOID = 71;
ITERABLE = 72;
FINALLY = 30;
FOR = 31;
FOREACH = 32;
FUNCTION = 33;
FN = 34;
GLOBAL = 35;
GOTO = 36;
IF = 37;
IMPLEMENTS = 38;
INCLUDE = 39;
INCLUDE_ONCE = 40;
INSTANCEOF = 41;
INSTEADOF = 42;
INTERFACE = 43;
ISSET = 44;
LIST = 45;
MATCH = 46;
NAMESPACE = 47;
NEW = 48;
OR = 49;
PRINT = 50;
PRIVATE = 51;
PROTECTED = 52;
PUBLIC = 53;
REQUIRE = 54;
REQUIRE_ONCE = 55;
RETURN = 56;
STATIC = 57;
SWITCH = 58;
THROW = 59;
TRAIT = 60;
TRY = 61;
UNSET = 62;
USE = 63;
VAR = 64;
WHILE = 65;
XOR = 66;
YIELD = 67;
INT = 68;
FLOAT = 69;
BOOL = 70;
STRING = 71;
TRUE = 72;
FALSE = 73;
NULL = 74;
VOID = 75;
ITERABLE = 76;
}

0 comments on commit 2126123

Please sign in to comment.