File: test_reserved_enum_value_lower.proto

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (86 lines) | stat: -rw-r--r-- 1,283 bytes parent folder | download | duplicates (10)
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
80
81
82
83
84
85
86
syntax = "proto3";

package lower_enum_value;

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;
  finally = 30;
  fn = 31;
  for = 32;
  foreach = 33;
  function = 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;
  parent = 77;
  print = 50;
  private = 51;
  protected = 52;
  public = 53;
  readonly = 79;
  require = 54;
  require_once = 55;
  return = 56;
  self = 78;
  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;
}