Skip to content

Commit

Permalink
Merge branch 'master' into anmonteiro/fix-labeled-args-oprint
Browse files Browse the repository at this point in the history
  • Loading branch information
anmonteiro authored Jul 8, 2024
2 parents 6ad328b + e626622 commit 82310ae
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Support local open and let bindings (@SanderSpies) [#2716](https://github.com/reasonml/reason/pull/2716)
- outcome printer: change the printing of `@bs.*` to `@mel.*` (@anmonteiro, [#2755](https://github.com/reasonml/reason/pull/2755))
- Fix outcome printing of optional arguments on OCaml 5.2 (@anmonteiro, [#2753](https://github.com/reasonml/reason/pull/2753))
- support parsing and printing of `external%extension` (@anmonteiro, [#2750](https://github.com/reasonml/reason/pull/2750))

## 3.11.0

Expand Down
22 changes: 18 additions & 4 deletions src/reason-parser/reason_parser.mly
Original file line number Diff line number Diff line change
Expand Up @@ -1671,13 +1671,27 @@ structure_item:
{ let (ext_attrs, ext_id) = $2 in
struct_item_extension ($1@ext_attrs, ext_id) $3 }
| item_attributes
EXTERNAL as_loc(val_ident) COLON core_type EQUAL primitive_declaration
EXTERNAL item_extension_sugar? as_loc(val_ident) COLON core_type EQUAL primitive_declaration
{ let loc = mklocation $symbolstartpos $endpos in
mkstr (Pstr_primitive (Ast_helper.Val.mk $3 $5 ~prim:$7 ~attrs:$1 ~loc)) }
let pstr_prim =
mkstr (Pstr_primitive (Ast_helper.Val.mk $4 $6 ~prim:$8 ~attrs:$1 ~loc))
in
match $3 with
| None -> pstr_prim
| Some ext ->
struct_item_extension ext [pstr_prim]
}
| item_attributes
EXTERNAL as_loc(val_ident) COLON core_type SEMI
EXTERNAL item_extension_sugar? as_loc(val_ident) COLON core_type SEMI
{ let loc = mklocation $symbolstartpos $endpos in
mkstr (Pstr_primitive (Ast_helper.Val.mk $3 $5 ~prim:[""] ~attrs:$1 ~loc)) }
let pstr_prim =
mkstr (Pstr_primitive (Ast_helper.Val.mk $4 $6 ~prim:[""] ~attrs:$1 ~loc))
in
match $3 with
| None -> pstr_prim
| Some ext ->
struct_item_extension ext [pstr_prim]
}
| type_declarations
{ let (nonrec_flag, tyl) = $1 in mkstr(Pstr_type (nonrec_flag, tyl)) }
| str_type_extension
Expand Down
9 changes: 6 additions & 3 deletions src/reason-parser/reason_pprint_ast.ml
Original file line number Diff line number Diff line change
Expand Up @@ -6725,12 +6725,13 @@ let printer = object(self:'self)
* format everything together in a ~postSpace:true (inline, inline) list
for nicer breaking
*)
method primitive_declaration vd =
method primitive_declaration ?extension vd =
let external_label = add_extension_sugar "external" extension in
let lblBefore =
label
~space:true
(makeList
[(makeList ~postSpace:true [atom "external"; protectIdentifier vd.pval_name.txt]); (atom ":")])
[(makeList ~postSpace:true [atom external_label; protectIdentifier vd.pval_name.txt]); (atom ":")])
(self#core_type vd.pval_type)
in
let primDecl =
Expand Down Expand Up @@ -7608,8 +7609,10 @@ let printer = object(self:'self)
match item.pstr_desc with
| Pstr_extension ((extension, PStr [item]), attrs) ->
begin match item.pstr_desc with
(* In case of a value, the extension gets inlined `let%private a = 1` *)
(* In case of a value or `external`, the extension gets inlined
`let%private a = 1` *)
| Pstr_value (rf, vb_list) -> self#bindings ~extension (rf, vb_list)
| Pstr_primitive vd -> self#primitive_declaration ~extension vd
| _ -> self#attach_std_item_attrs attrs (self#payload "%%" extension (PStr [item]))
end
| _ -> self#structure_item item
Expand Down
6 changes: 6 additions & 0 deletions test/extensions.t/input.re
Original file line number Diff line number Diff line change
Expand Up @@ -383,3 +383,9 @@ let predicate =
/* Attributes shoudn't be inlined and always break */
[@warning "-8"]
let a = 3;

[%%foo external x: int => int = ""];
[%%foo external x: int => int = "caml_prim"];
external%foo x: int => int = "caml_prim";


4 changes: 4 additions & 0 deletions test/extensions.t/run.t
Original file line number Diff line number Diff line change
Expand Up @@ -385,3 +385,7 @@ Format extensions
/* Attributes shoudn't be inlined and always break */
[@warning "-8"]
let a = 3;

external%foo x: int => int;
external%foo x: int => int = "caml_prim";
external%foo x: int => int = "caml_prim";

0 comments on commit 82310ae

Please sign in to comment.