We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81f072a commit 2121002Copy full SHA for 2121002
src/Fantomas.Core/ASTTransformer.fs
@@ -123,6 +123,7 @@ let mkConstant (creationAide: CreationAide) c r : Constant =
123
| SynConst.Int32 v -> orElse (v.ToString())
124
| SynConst.Int64 v -> orElse (v.ToString() + "L")
125
| SynConst.UInt16 v -> orElse (v.ToString() + "us")
126
+ // This formatting is likely imperfect, but SynConst.UInt16s is only used internally to the F# compiler.
127
| SynConst.UInt16s v ->
128
orElse (
129
v
0 commit comments