You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Better record and value formatting in tools (#7021)
* Remove semicolons from record tooltips
* Update to put a space between braces
* Update formatting as best I can, plus some tests I guess
* More baseline updates
* Anonymous records
* Update anon records tests
* Add vsbsl lol
* Update baselines and reduce a simple filter
* Update baselines maybe last time
* Update fsharpqa test
* make tests pass
* Add formatting for values
* Update tests
* Update test
* Update fsharpqa tests
* tryit
* lol
* get yote
* shlerp
* Update tests again I guess
* more update
* mother of pearl
* this is a real turd
Copy file name to clipboardExpand all lines: tests/fsharp/core/anon/lib.fs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -52,8 +52,8 @@ module KindB1 =
52
52
check "coijoiwcnkwle1"{| a =1|}{| a =1|}
53
53
check "coijoiwcnkwle2"{| a =2|}{| a =2|}
54
54
55
-
check "coijoiwcnkwle3"(sprintf "%A"{| X =10|})"{X = 10;}"
56
-
check "coijoiwcnkwle4"(sprintf "%A"{| X =10; Y =1|}|>fun s -> s.Replace("\n","").Replace("\r",""))("{X = 10; Y = 1;}".Replace("\n","").Replace("\r",""))
55
+
check "coijoiwcnkwle3"(sprintf "%A"{| X =10|})"{X = 10}"
56
+
check "coijoiwcnkwle4"(sprintf "%A"{| X =10; Y =1|})"{ X = 10\nY = 1 }"
check "vrknvio1"(SampleAPI.SampleFunction {| A=1; B ="abc"|})4// note, this is creating an instance of an anonymous record from another assembly.
50
50
check "vrknvio2"(SampleAPI.SampleFunctionAcceptingList [{| A=1; B ="abc"|};{| A=2; B ="def"|}])[4;5]// note, this is creating an instance of an anonymous record from another assembly.
0 commit comments