Advertisement
Guest User

Untitled

a guest
Jul 10th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. Error: Signature mismatch:
  2. Modules do not match:
  3. sig
  4. type raw_pst =
  5. Reader of Reader.pst
  6. | App of (string * Camlp4.PreCast.Ast.expr list)
  7. | Seq of (raw_pst * raw_pst)
  8. | Binding of (Camlp4.PreCast.Ast.patt * raw_pst)
  9. | Absent of raw_pst
  10. | Present of raw_pst
  11. | List0 of (raw_pst * raw_pst option)
  12. | List1 of (raw_pst * raw_pst option)
  13. | Opt of raw_pst
  14. | Test of Camlp4.PreCast.Ast.expr
  15. | Alts of raw_pst list
  16. | Any
  17. | Eoi
  18. type 'a pst = PST of raw_pst
  19. module Expr :
  20. sig
  21. val bind :
  22. Camlp4.PreCast.Ast.patt ->
  23. string ->
  24. Camlp4.PreCast.Ast.expr list ->
  25. Camlp4.PreCast.Ast.expr ->
  26. Camlp4.PreCast.Ast.expr -> Camlp4.PreCast.Ast.expr
  27. val __ : Camlp4.PreCast.Ast.patt
  28. val parsr :
  29. Camlp4.PreCast.Ast.patt ->
  30. raw_pst -> READER.expr -> READER.expr -> READER.expr
  31. val seq :
  32. Camlp4.PreCast.Ast.patt ->
  33. raw_pst ->
  34. raw_pst -> READER.expr -> READER.expr -> READER.expr
  35. val absent :
  36. raw_pst -> READER.expr -> READER.expr -> READER.expr
  37. val present :
  38. Camlp4.PreCast.Ast.patt ->
  39. raw_pst -> READER.expr -> READER.expr -> READER.expr
  40. val opt :
  41. Camlp4.PreCast.Ast.patt ->
  42. raw_pst -> READER.expr -> READER.expr
  43. val list0 :
  44. Camlp4.PreCast.Ast.patt ->
  45. raw_pst -> raw_pst option -> READER.expr -> READER.expr
  46. val list1 :
  47. Camlp4.PreCast.Ast.patt ->
  48. raw_pst ->
  49. raw_pst option -> READER.expr -> READER.expr -> READER.expr
  50. val affirm :
  51. Camlp4.PreCast.Ast.expr ->
  52. READER.expr -> READER.expr -> READER.expr
  53. val alts_expr :
  54. Camlp4.PreCast.Ast.patt ->
  55. (raw_pst * READER.expr) list -> READER.expr -> READER.expr
  56. val alts :
  57. Camlp4.PreCast.Ast.patt ->
  58. raw_pst list -> READER.expr -> READER.expr -> READER.expr
  59. val any :
  60. Camlp4.PreCast.Ast.patt ->
  61. READER.expr -> READER.expr -> READER.expr
  62. val eoi : READER.expr -> READER.expr -> READER.expr
  63. val func : Camlp4.PreCast.Ast.expr -> Camlp4.PreCast.Ast.expr
  64. val rule :
  65. (raw_pst * READER.expr) list -> Camlp4.PreCast.Ast.expr
  66. end
  67. val reader : Reader.pst -> 'a pst
  68. val app : string -> Camlp4.PreCast.Ast.expr list -> 'a pst
  69. val seq : 'a pst * 'b pst -> 'c pst
  70. val binding : Camlp4.PreCast.Ast.patt -> 'a pst -> 'b pst
  71. val absent : 'a pst -> 'b pst
  72. val present : 'a pst -> 'b pst
  73. val list_n :
  74. (raw_pst * raw_pst option -> raw_pst) ->
  75. bindable pst -> 'a pst option -> bindable pst
  76. val list0 : bindable pst -> 'a pst option -> bindable pst
  77. val list1 : bindable pst -> 'a pst option -> bindable pst
  78. val opt : 'a pst -> 'b pst
  79. val test : Camlp4.PreCast.Ast.expr -> 'a pst
  80. val alts : 'a pst list -> 'b pst
  81. val any : 'a pst
  82. val eoi : 'a pst
  83. val default_pe :
  84. string -> 'a pst -> 'b pst * Camlp4.PreCast.Ast.expr
  85. end
  86. is not included in
  87. PST
  88. Command exited with code 2.
  89. Compilation unsuccessful after building 7 targets (5 cached) in 00:00:00.
  90. make: *** [string] Error 10
  91. dan[metl]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement