Skip to content

Commit

Permalink
Update Exprs.fsi
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro authored and ncave committed Feb 22, 2019
1 parent 42e7444 commit fff19ed
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/fsharp/symbols/Exprs.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,13 @@ module public BasicPatterns =
/// Matches record expressions
val (|NewRecord|_|) : FSharpExpr -> (FSharpType * FSharpExpr list) option

/// Matches anonymous record expressions
val (|NewAnonRecord|_|) : FSharpExpr -> (FSharpType * FSharpExpr list) option

/// Matches expressions getting a field from an anonymous record. The integer represents the
/// index into the sorted fields of the anonymous record.
val (|AnonRecordGet|_|) : FSharpExpr -> (FSharpExpr * FSharpType * int) option

/// Matches expressions which get a field from a record or class
val (|FSharpFieldGet|_|) : FSharpExpr -> (FSharpExpr option * FSharpType * FSharpField) option

Expand Down

0 comments on commit fff19ed

Please sign in to comment.