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: CHANGELOG.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
### Added
9
9
-`SynType.CreateFromLongIdent` helper in `Myriad.Core.AstExtensions`. Plugin authors can now convert a `LongIdent` to a `SynType` using this single convenience method instead of manually chaining `SynLongIdent.Create` and `SynType.CreateLongIdent`.
10
10
11
+
### Fixed
12
+
- Myriad now correctly processes input files that contain F# 8 dot-lambda (`_.property`) shorthand syntax. Previously, types using `_.` in `with member` bodies would cause a parse error:
13
+
14
+
```
15
+
Fantomas.Core.ParseException: Unexpected symbol '_' in expression
16
+
```
17
+
18
+
This was resolved by upgrading `Fantomas.Core` and `Fantomas.FCS` from `7.0.0` to `7.0.5`, which includes full support for `SynExpr.DotLambda`. For example, the following now works correctly:
19
+
11
20
```fsharp
12
-
static member CreateFromLongIdent (parent: LongIdent) =
13
-
SynLongIdent.Create (parent |> List.map (fun i -> i.idText))
0 commit comments