File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,13 @@ module public BasicPatterns =
130130 /// Matches record expressions
131131 val (| NewRecord | _ |) : FSharpExpr -> ( FSharpType * FSharpExpr list ) option
132132
133+ /// Matches anonymous record expressions
134+ val (| NewAnonRecord | _ |) : FSharpExpr -> ( FSharpType * FSharpExpr list ) option
135+
136+ /// Matches expressions getting a field from an anonymous record. The integer represents the
137+ /// index into the sorted fields of the anonymous record.
138+ val (| AnonRecordGet | _ |) : FSharpExpr -> ( FSharpExpr * FSharpType * int ) option
139+
133140 /// Matches expressions which get a field from a record or class
134141 val (| FSharpFieldGet | _ |) : FSharpExpr -> ( FSharpExpr option * FSharpType * FSharpField ) option
135142
You can’t perform that action at this time.
0 commit comments