package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | TCommentSpace of Parse_info.t
  2. | TCommentNewline of Parse_info.t
  3. | TComment of Parse_info.t
  4. | TCommentMisc of Parse_info.t
  5. | TInt of string * Parse_info.t
  6. | TFloat of string * Parse_info.t
  7. | TChar of string * Parse_info.t
  8. | TString of string * Parse_info.t
  9. | TIdent of string * Parse_info.t
  10. | TVariable of string * Parse_info.t
  11. | Tif of Parse_info.t
  12. | Tcond of Parse_info.t
  13. | Twhen of Parse_info.t
  14. | Tcase of Parse_info.t
  15. | Tbegin of Parse_info.t
  16. | Tend of Parse_info.t
  17. | Tlet of Parse_info.t
  18. | Tof of Parse_info.t
  19. | Tfun of Parse_info.t
  20. | Tafter of Parse_info.t
  21. | Tquery of Parse_info.t
  22. | Tcatch of Parse_info.t
  23. | Treceive of Parse_info.t
  24. | TOParen of Parse_info.t
  25. | TCParen of Parse_info.t
  26. | TOBracket of Parse_info.t
  27. | TCBracket of Parse_info.t
  28. | TOBrace of Parse_info.t
  29. | TCBrace of Parse_info.t
  30. | TDot of Parse_info.t
  31. | TColon of Parse_info.t
  32. | TSemiColon of Parse_info.t
  33. | TComma of Parse_info.t
  34. | TQuestion of Parse_info.t
  35. | TPipe of Parse_info.t
  36. | TPipePipe of Parse_info.t
  37. | TArrow of Parse_info.t
  38. | TSharp of Parse_info.t
  39. | TUnderscore of Parse_info.t
  40. | TPlus of Parse_info.t
  41. | TMinus of Parse_info.t
  42. | TStar of Parse_info.t
  43. | TDiv of Parse_info.t
  44. | Tdiv of Parse_info.t
  45. | Trem of Parse_info.t
  46. | Tor of Parse_info.t
  47. | Txor of Parse_info.t
  48. | Tbor of Parse_info.t
  49. | Tbxor of Parse_info.t
  50. | Tbsl of Parse_info.t
  51. | Tbsr of Parse_info.t
  52. | Tand of Parse_info.t
  53. | Tband of Parse_info.t
  54. | Tnot of Parse_info.t
  55. | Tbnot of Parse_info.t
  56. | TEqEq of Parse_info.t
  57. | TSlashEq of Parse_info.t
  58. | TEqColonEq of Parse_info.t
  59. | TEqSlashEq of Parse_info.t
  60. | TLess of Parse_info.t
  61. | TMore of Parse_info.t
  62. | TLessEq of Parse_info.t
  63. | TMoreEq of Parse_info.t
  64. | TInc of Parse_info.t
  65. | TDec of Parse_info.t
  66. | TEq of Parse_info.t
  67. | TBang of Parse_info.t
  68. | TAssign of Parse_info.t
  69. | TUnknown of Parse_info.t
  70. | EOF of Parse_info.t