aboutsummaryrefslogtreecommitdiff
path: root/php/tests/proto/test_reserved_enum_lower.proto
blob: e2144c0c154cafd0841b20125263bfec053dd9ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
syntax = "proto3";

package lower_enum;

enum NotAllowed {
  abstract = 0;
  and = 1;
  array = 2;
  as = 3;
  break = 4;
  callable = 5;
  case     = 6;
  catch    = 7;
  class    = 8;
  clone    = 9;
  const    = 10;
  continue = 11;
  declare  = 12;
  default  = 13;
  die      = 14;
  do       = 15;
  echo     = 16;
  else     = 17;
  elseif   = 18;
  empty    = 19;
  enddeclare = 20;
  endfor     = 21;
  endforeach = 22;
  endif      = 23;
  endswitch = 24;
  endwhile = 25;
  eval = 26;
  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;
}