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
Copy file name to clipboardExpand all lines: src/fsharp/ast.fs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -424,7 +424,7 @@ and
424
424
425
425
/// F# syntax : struct (type * ... * type)
426
426
// the bool is true if / rather than * follows the type
427
-
| StructTuple of(bool*SynType)list*range
427
+
| StructTuple of(bool*SynType)list*range:range
428
428
429
429
/// F# syntax : type[]
430
430
| Array ofint*elementType:SynType*range:range
@@ -496,7 +496,7 @@ and
496
496
| Tuple ofexprs:SynExprlist*commaRanges:rangelist*range:range// "range list" is for interstitial commas, these only matter for parsing/design-time tooling, the typechecker may munge/discard them
497
497
498
498
/// F# syntax: struct (e1, ..., eN)
499
-
| StructTuple ofSynExprlist*rangelist*range// "range list" is for interstitial commas, these only matter for parsing/design-time tooling, the typechecker may munge/discard them
499
+
| StructTuple ofSynExprlist*rangelist*range:range// "range list" is for interstitial commas, these only matter for parsing/design-time tooling, the typechecker may munge/discard them
0 commit comments