Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit 163a02c

Browse files
fix: prevent stripping of quotes for empty polymorphic variant (#474)
1 parent d9c44bb commit 163a02c

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

src/res_printer.ml

+7-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,13 @@ let printPolyVarIdent txt =
459459
Doc.text txt;
460460
Doc.text"\""
461461
]
462-
| NormalIdent -> Doc.text txt
462+
| NormalIdent -> match txt with
463+
| "" -> Doc.concat [
464+
Doc.text "\"";
465+
Doc.text txt;
466+
Doc.text"\""
467+
]
468+
| _ -> Doc.text txt
463469

464470

465471
let printLident l = match l with

tests/printer/pattern/expected/variant.res.txt

+2
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,5 @@ switch numericPolyVar {
4343
| #42 => ()
4444
| #3(x, y, z) => Js.log3(x, y, z)
4545
}
46+
47+
let e = #""

tests/printer/pattern/variant.res

+2
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,5 @@ switch numericPolyVar {
4343
| #42 => ()
4444
| #3(x, y, z) => Js.log3(x, y, z)
4545
}
46+
47+
let e = #""

0 commit comments

Comments
 (0)