package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | TUnknown of Ast_go.tok
  2. | EOF of Ast_go.tok
  3. | TCommentSpace of Ast_go.tok
  4. | TComment of Ast_go.tok
  5. | TCommentNewline of Ast_go.tok
  6. | LINT of string * Ast_go.tok
  7. | LFLOAT of string * Ast_go.tok
  8. | LIMAG of string * Ast_go.tok
  9. | LRUNE of string * Ast_go.tok
  10. | LSTR of string * Ast_go.tok
  11. | LASOP of Ast_generic.arithmetic_operator * Ast_go.tok
  12. | LNAME of string * Ast_go.tok
  13. | LIF of Ast_go.tok
  14. | LELSE of Ast_go.tok
  15. | LFOR of Ast_go.tok
  16. | LRETURN of Ast_go.tok
  17. | LBREAK of Ast_go.tok
  18. | LCONTINUE of Ast_go.tok
  19. | LFALL of Ast_go.tok
  20. | LSWITCH of Ast_go.tok
  21. | LCASE of Ast_go.tok
  22. | LDEFAULT of Ast_go.tok
  23. | LGOTO of Ast_go.tok
  24. | LFUNC of Ast_go.tok
  25. | LCONST of Ast_go.tok
  26. | LVAR of Ast_go.tok
  27. | LTYPE of Ast_go.tok
  28. | LSTRUCT of Ast_go.tok
  29. | LINTERFACE of Ast_go.tok
  30. | LGO of Ast_go.tok
  31. | LCHAN of Ast_go.tok
  32. | LSELECT of Ast_go.tok
  33. | LDEFER of Ast_go.tok
  34. | LPACKAGE of Ast_go.tok
  35. | LIMPORT of Ast_go.tok
  36. | LMAP of Ast_go.tok
  37. | LRANGE of Ast_go.tok
  38. | LPAREN of Ast_go.tok
  39. | RPAREN of Ast_go.tok
  40. | LBRACE of Ast_go.tok
  41. | RBRACE of Ast_go.tok
  42. | LBRACKET of Ast_go.tok
  43. | RBRACKET of Ast_go.tok
  44. | LCOLON of Ast_go.tok
  45. | LEQ of Ast_go.tok
  46. | LDOT of Ast_go.tok
  47. | LCOMMA of Ast_go.tok
  48. | LCOLAS of Ast_go.tok
  49. | LDDD of Ast_go.tok
  50. | LPLUS of Ast_go.tok
  51. | LMINUS of Ast_go.tok
  52. | LMULT of Ast_go.tok
  53. | LDIV of Ast_go.tok
  54. | LPERCENT of Ast_go.tok
  55. | LPIPE of Ast_go.tok
  56. | LAND of Ast_go.tok
  57. | LHAT of Ast_go.tok
  58. | LANDAND of Ast_go.tok
  59. | LOROR of Ast_go.tok
  60. | LANDNOT of Ast_go.tok
  61. | LINC of Ast_go.tok
  62. | LDEC of Ast_go.tok
  63. | LEQEQ of Ast_go.tok
  64. | LNE of Ast_go.tok
  65. | LGE of Ast_go.tok
  66. | LGT of Ast_go.tok
  67. | LLE of Ast_go.tok
  68. | LLT of Ast_go.tok
  69. | LLSH of Ast_go.tok
  70. | LRSH of Ast_go.tok
  71. | LBANG of Ast_go.tok
  72. | LTILDE of Ast_go.tok
  73. | LCOMM of Ast_go.tok
  74. | LBODY of Ast_go.tok
  75. | LSEMICOLON of Ast_go.tok
val sgrep_spatch_pattern : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Ast_go.any