We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent7102178 commit6d3f6deCopy full SHA for 6d3f6de
src/fsharp/NicePrint.fs
@@ -321,9 +321,11 @@ module private PrintIL =
321
then Some Literals.keywordTrue
322
else Some Literals.keywordFalse
323
| ILFieldInit.Char c->("'"+(char c).ToString()+"'")|>(tagStringLiteral>> Some)
324
+| ILFieldInit.Int8 x->((x|> int32|> string)+"y")|>(tagNumericLiteral>> Some)
325
| ILFieldInit.Int16 x->((x|> int32|> string)+"s")|>(tagNumericLiteral>> Some)
326
| ILFieldInit.Int32 x-> x|>(string>> tagNumericLiteral>> Some)
327
| ILFieldInit.Int64 x->((x|> string)+"L")|>(tagNumericLiteral>> Some)
328
+| ILFieldInit.UInt8 x->((x|> int32|> string)+"uy")|>(tagNumericLiteral>> Some)
329
| ILFieldInit.UInt16 x->((x|> int32|> string)+"us")|>(tagNumericLiteral>> Some)
330
| ILFieldInit.UInt32 x->(x|> int64|> string)+"u"|>(tagNumericLiteral>> Some)
331
| ILFieldInit.UInt64 x->((x|> int64|> string)+"UL")|>(tagNumericLiteral>> Some)