package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | TUnknown of Parse_info.t
  2. | EOF of Parse_info.t
  3. | TComment of Parse_info.t
  4. | TCommentNewline of Parse_info.t
  5. | TCommentSpace of Parse_info.t
  6. | TInt of string * Parse_info.t
  7. | TFloat of string * Parse_info.t
  8. | TChar of string * Parse_info.t
  9. | TString of string * Parse_info.t
  10. | IDENTIFIER of string * Parse_info.t
  11. | PRIMITIVE_TYPE of string * Parse_info.t
  12. | LP of Parse_info.t
  13. | RP of Parse_info.t
  14. | LC of Parse_info.t
  15. | RC of Parse_info.t
  16. | LB of Parse_info.t
  17. | RB of Parse_info.t
  18. | SM of Parse_info.t
  19. | CM of Parse_info.t
  20. | DOT of Parse_info.t
  21. | EQ of Parse_info.t
  22. | GT of Parse_info.t
  23. | LT of Parse_info.t
  24. | NOT of Parse_info.t
  25. | COMPL of Parse_info.t
  26. | COND of Parse_info.t
  27. | COLON of Parse_info.t
  28. | EQ_EQ of Parse_info.t
  29. | LE of Parse_info.t
  30. | GE of Parse_info.t
  31. | NOT_EQ of Parse_info.t
  32. | AND_AND of Parse_info.t
  33. | OR_OR of Parse_info.t
  34. | INCR of Parse_info.t
  35. | DECR of Parse_info.t
  36. | PLUS of Parse_info.t
  37. | MINUS of Parse_info.t
  38. | TIMES of Parse_info.t
  39. | DIV of Parse_info.t
  40. | AND of Parse_info.t
  41. | OR of Parse_info.t
  42. | XOR of Parse_info.t
  43. | MOD of Parse_info.t
  44. | LS of Parse_info.t
  45. | SRS of Parse_info.t
  46. | URS of Parse_info.t
  47. | AT of Parse_info.t
  48. | DOTS of Parse_info.t
  49. | ARROW of Parse_info.t
  50. | COLONCOLON of Parse_info.t
  51. | OPERATOR_EQ of Ast_generic.arithmetic_operator * Parse_info.t
  52. | ABSTRACT of Parse_info.t
  53. | BREAK of Parse_info.t
  54. | CASE of Parse_info.t
  55. | CATCH of Parse_info.t
  56. | CLASS of Parse_info.t
  57. | CONST of Parse_info.t
  58. | CONTINUE of Parse_info.t
  59. | DEFAULT of Parse_info.t
  60. | DO of Parse_info.t
  61. | ELSE of Parse_info.t
  62. | EXTENDS of Parse_info.t
  63. | FINAL of Parse_info.t
  64. | FINALLY of Parse_info.t
  65. | FOR of Parse_info.t
  66. | GOTO of Parse_info.t
  67. | IF of Parse_info.t
  68. | IMPLEMENTS of Parse_info.t
  69. | IMPORT of Parse_info.t
  70. | INSTANCEOF of Parse_info.t
  71. | INTERFACE of Parse_info.t
  72. | NATIVE of Parse_info.t
  73. | NEW of Parse_info.t
  74. | PACKAGE of Parse_info.t
  75. | PRIVATE of Parse_info.t
  76. | PROTECTED of Parse_info.t
  77. | PUBLIC of Parse_info.t
  78. | RETURN of Parse_info.t
  79. | STATIC of Parse_info.t
  80. | STRICTFP of Parse_info.t
  81. | SUPER of Parse_info.t
  82. | SWITCH of Parse_info.t
  83. | SYNCHRONIZED of Parse_info.t
  84. | THIS of Parse_info.t
  85. | THROW of Parse_info.t
  86. | THROWS of Parse_info.t
  87. | TRANSIENT of Parse_info.t
  88. | TRY of Parse_info.t
  89. | VOID of Parse_info.t
  90. | VOLATILE of Parse_info.t
  91. | WHILE of Parse_info.t
  92. | ASSERT of Parse_info.t
  93. | ENUM of Parse_info.t
  94. | TRUE of Parse_info.t
  95. | FALSE of Parse_info.t
  96. | NULL of Parse_info.t
  97. | VAR of Parse_info.t
  98. | LB_RB of Parse_info.t
  99. | LT_GENERIC of Parse_info.t
  100. | LP_LAMBDA of Parse_info.t
  101. | DEFAULT_COLON of Parse_info.t
val sgrep_spatch_pattern : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Ast_java.any