Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support automatic conversion to uncurried syntax via @@toUncurried and reformat #5800

Merged
merged 3 commits into from
Nov 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

- Introduce experimental uncurried by default mode. Can be turned on mid-file by adding standalone annotation `@@uncurried`. For experimentation only. https://github.com/rescript-lang/rescript-compiler/pull/5796

- Adding `@@toUncurried` to the file and reformat will convert to uncurried syntax https://github.com/rescript-lang/rescript-compiler/pull/5800

#### :boom: Breaking Change

- Remove support for the legacy Reason syntax. Existing Reason code can be converted to ReScript syntax using ReScript 9 as follows:
Expand Down
11 changes: 10 additions & 1 deletion lib/4.06.1/unstable/js_compiler.ml
Original file line number Diff line number Diff line change
Expand Up @@ -58330,7 +58330,16 @@ and printAttribute ?(standalone = false) ~state
],
Doc.hardLine )
| _ ->
if id.txt = "uncurried" then state.uncurried_by_default <- true;
let id =
match id.txt with
| "uncurried" ->
state.uncurried_by_default <- true;
id
| "toUncurried" ->
state.uncurried_by_default <- true;
{id with txt = "uncurried"}
| _ -> id
in
( Doc.group
(Doc.concat
[
Expand Down
11 changes: 10 additions & 1 deletion lib/4.06.1/unstable/js_playground_compiler.ml
Original file line number Diff line number Diff line change
Expand Up @@ -58330,7 +58330,16 @@ and printAttribute ?(standalone = false) ~state
],
Doc.hardLine )
| _ ->
if id.txt = "uncurried" then state.uncurried_by_default <- true;
let id =
match id.txt with
| "uncurried" ->
state.uncurried_by_default <- true;
id
| "toUncurried" ->
state.uncurried_by_default <- true;
{id with txt = "uncurried"}
| _ -> id
in
( Doc.group
(Doc.concat
[
Expand Down
11 changes: 10 additions & 1 deletion lib/4.06.1/whole_compiler.ml
Original file line number Diff line number Diff line change
Expand Up @@ -113325,7 +113325,16 @@ and printAttribute ?(standalone = false) ~state
],
Doc.hardLine )
| _ ->
if id.txt = "uncurried" then state.uncurried_by_default <- true;
let id =
match id.txt with
| "uncurried" ->
state.uncurried_by_default <- true;
id
| "toUncurried" ->
state.uncurried_by_default <- true;
{id with txt = "uncurried"}
| _ -> id
in
( Doc.group
(Doc.concat
[
Expand Down
9 changes: 8 additions & 1 deletion res_syntax/src/res_core.ml
Original file line number Diff line number Diff line change
Expand Up @@ -6404,7 +6404,14 @@ and parseStandaloneAttribute p =
let startPos = p.startPos in
Parser.expect AtAt p;
let attrId = parseAttributeId ~startPos p in
if attrId.txt = "uncurried" then p.uncurried_by_default <- true;
let attrId =
match attrId.txt with
| "uncurried" ->
p.uncurried_by_default <- true;
attrId
| "toUncurried" -> {attrId with txt = "uncurried"}
| _ -> attrId
in
let payload = parsePayload p in
(attrId, payload)

Expand Down
11 changes: 10 additions & 1 deletion res_syntax/src/res_printer.ml
Original file line number Diff line number Diff line change
Expand Up @@ -5264,7 +5264,16 @@ and printAttribute ?(standalone = false) ~state
],
Doc.hardLine )
| _ ->
if id.txt = "uncurried" then state.uncurried_by_default <- true;
let id =
match id.txt with
| "uncurried" ->
state.uncurried_by_default <- true;
id
| "toUncurried" ->
state.uncurried_by_default <- true;
{id with txt = "uncurried"}
| _ -> id
in
( Doc.group
(Doc.concat
[
Expand Down
35 changes: 35 additions & 0 deletions res_syntax/tests/printer/expr/ToUncurried.res
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
let cApp = foo(3)
let uApp = foo(. 3)

let cFun = x => 3
let uFun = (.x) => 3
let mixFun = (a, .b, c) => (d, e, f) => (g, .h) => 4
let bracesFun = (. x) => y => x+y
let cFun2 = (x, y) => 3
let uFun2 = (. x, y) => 3

type cTyp = string => int
type uTyp = (. string) => int
type mixTyp = (string, .string, string) => (string, string, string) => (string, .string) => int
type bTyp = (. string) => string => int
type cTyp2 = (string, string) => int
type uTyp2 = (.string, string) => int

@@toUncurried

let cApp = foo(3)
let uApp = foo(. 3)

let cFun = x => 3
let uFun = (.x) => 3
let mixFun = (a, .b, c) => (d, e, f) => (g, .h) => 4
let bracesFun = (. x) => y => x+y
let cFun2 = (x, y) => 3
let uFun2 = (. x, y) => 3

type cTyp = string => int
type uTyp = (. string) => int
type mixTyp = (string, .string, string) => (string, string, string) => (string, .string) => int
type bTyp = (. string) => string => int
type cTyp2 = (string, string) => int
type uTyp2 = (.string, string) => int
35 changes: 35 additions & 0 deletions res_syntax/tests/printer/expr/expected/ToUncurried.res.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
let cApp = foo(3)
let uApp = foo(. 3)

let cFun = x => 3
let uFun = (. x) => 3
let mixFun = a => (. b, c) => {(d, e, f, g) => (. h) => 4}
let bracesFun = (. x) => {y => x + y}
let cFun2 = (x, y) => 3
let uFun2 = (. x, y) => 3

type cTyp = string => int
type uTyp = (. string) => int
type mixTyp = string => (. string, string) => (string, string, string, string) => (. string) => int
type bTyp = (. string) => string => int
type cTyp2 = (string, string) => int
type uTyp2 = (. string, string) => int

@@uncurried

let cApp = foo(. 3)
let uApp = foo(3)

let cFun = (. x) => 3
let uFun = x => 3
let mixFun = (. a) => (b, c) => {(. d, e, f, g) => h => 4}
let bracesFun = x => {(. y) => x + y}
let cFun2 = (. x, y) => 3
let uFun2 = (x, y) => 3

type cTyp = (. string) => int
type uTyp = string => int
type mixTyp = (. string) => (string, string) => (. string, string, string, string) => string => int
type bTyp = string => (. string) => int
type cTyp2 = (. string, string) => int
type uTyp2 = (string, string) => int