Skip to content

Commit 6d64592

Browse files
authored
Merge pull request rescript-lang#2658 from chenglou/intf
[Reason] Check in interface file for outcome printer f1d22a691a74a6dfd939b1e1e00c46d9ec89d082
2 parents 5c38c80 + 6d7a475 commit 6d64592

File tree

2 files changed

+105
-8
lines changed

2 files changed

+105
-8
lines changed

jscomp/outcome_printer/reason_syntax_util.ml

-8
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,6 @@ let processLineEndingsAndStarts str =
324324
|> String.concat "\n"
325325
|> String.trim
326326

327-
module StringMap = Map.Make (String)
328-
329327
(** Generate a suitable extension node for Merlin's consumption,
330328
for the purposes of reporting a syntax error - only used
331329
in recovery mode.
@@ -347,12 +345,6 @@ let syntax_error_extension_node loc message =
347345
in
348346
(str, payload)
349347

350-
let swap_txt map txt =
351-
if StringMap.mem txt map then
352-
StringMap.find txt map
353-
else
354-
txt
355-
356348
(** identifier_mapper maps all identifiers in an AST with a mapping function f
357349
this is used by swap_operator_mapper right below, to traverse the whole AST
358350
and swapping the symbols listed above.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
(* Hello! Welcome to the Reason syntax util logic.
2+
3+
This file's shared between the Reason repo and the BuckleScript repo. In
4+
Reason, it's in src/reason-parser. In BuckleScript, it's in
5+
jscomp/outcome_printer. We periodically copy this file from Reason (the source
6+
of truth) to BuckleScript, then uncomment the #if #else #end cppo macros you
7+
see in the file. That's because BuckleScript's on OCaml 4.02 while Reason's on
8+
4.04; so the #if macros surround the pieces of code that are different between
9+
the two compilers.
10+
11+
When you modify this file, please make sure you're not dragging in too many
12+
things. You don't necessarily have to test the file on both Reason and
13+
BuckleScript; ping @chenglou and a few others and we'll keep them synced up by
14+
patching the right parts, through the power of types(tm)
15+
*)
16+
17+
val ml_to_reason_swap : string -> string
18+
19+
val escape_string : string -> string
20+
21+
(* Everything below is used by reason repo but not the BuckleScript repo *)
22+
23+
#if defined BS_NO_COMPILER_PATCH then
24+
25+
module TrailingCommaMarker : sig val char : char val string : string end
26+
27+
val pick_while : ('a -> bool) -> 'a list -> 'a list * 'a list
28+
29+
val split_by : ?keep_empty:bool -> (char -> bool) -> string -> string list
30+
31+
val processLineEndingsAndStarts : string -> string
32+
33+
val syntax_error_extension_node :
34+
Ast_404.Location.t ->
35+
string -> string Ast_404.Location.loc * Ast_404.Parsetree.payload
36+
37+
val escape_stars_slashes_mapper :
38+
Ast_404.Ast_mapper.mapper -> Ast_404.Ast_mapper.mapper
39+
40+
val reason_to_ml_swap_operator_mapper :
41+
Ast_404.Ast_mapper.mapper -> Ast_404.Ast_mapper.mapper
42+
43+
val ml_to_reason_swap_operator_mapper :
44+
Ast_404.Ast_mapper.mapper -> Ast_404.Ast_mapper.mapper
45+
46+
val attribute_exists : 'a -> ('a Ast_404.Asttypes.loc * 'b) list -> bool
47+
48+
val attributes_conflicted :
49+
'a -> 'a -> ('a Ast_404.Asttypes.loc * 'b) list -> bool
50+
51+
val normalized_attributes :
52+
'a ->
53+
('a Ast_404.Asttypes.loc * 'b) list -> ('a Ast_404.Asttypes.loc * 'b) list
54+
55+
val apply_mapper_to_structure :
56+
Ast_404.Parsetree.structure ->
57+
Ast_404.Ast_mapper.mapper -> Ast_404.Parsetree.structure
58+
59+
val apply_mapper_to_signature :
60+
Ast_404.Parsetree.signature ->
61+
Ast_404.Ast_mapper.mapper -> Ast_404.Parsetree.signature
62+
63+
val apply_mapper_to_type :
64+
Ast_404.Parsetree.core_type ->
65+
Ast_404.Ast_mapper.mapper -> Ast_404.Parsetree.core_type
66+
67+
val apply_mapper_to_expr :
68+
Ast_404.Parsetree.expression ->
69+
Ast_404.Ast_mapper.mapper -> Ast_404.Parsetree.expression
70+
71+
val apply_mapper_to_pattern :
72+
Ast_404.Parsetree.pattern ->
73+
Ast_404.Ast_mapper.mapper -> Ast_404.Parsetree.pattern
74+
75+
val apply_mapper_to_toplevel_phrase :
76+
Ast_404.Parsetree.toplevel_phrase ->
77+
Ast_404.Ast_mapper.mapper -> Ast_404.Parsetree.toplevel_phrase
78+
79+
val apply_mapper_to_use_file :
80+
Ast_404.Parsetree.toplevel_phrase list ->
81+
Ast_404.Ast_mapper.mapper -> Ast_404.Parsetree.toplevel_phrase list
82+
83+
type error = Syntax_error of string
84+
85+
exception Error of Ast_404.Location.t * error
86+
87+
val map_first : ('a -> 'a) -> 'a list -> 'a list
88+
89+
val map_last : ('a -> 'a) -> 'a list -> 'a list
90+
91+
type menhirMessagesError = { msg : string; loc : Ast_404.Location.t; }
92+
93+
type menhirError =
94+
NoMenhirMessagesError
95+
| MenhirMessagesError of menhirMessagesError
96+
97+
val findMenhirErrorMessage : Ast_404.Location.t -> menhirError
98+
99+
val add_error_message : menhirMessagesError -> unit
100+
101+
val location_is_before : Ast_404.Location.t -> Ast_404.Location.t -> bool
102+
103+
val location_contains : Ast_404.Location.t -> Ast_404.Location.t -> bool
104+
105+
#end

0 commit comments

Comments
 (0)