fix parsing bug with implicit mult t

This commit is contained in:
Art 2023-01-13 22:02:57 +01:00
parent a85c0c046c
commit c225f60997
Signed by: prod2
GPG Key ID: F3BB5A97A70A8DDE
3 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ type Statement =
let sexprstmt = expr |>> ExprStatement
let sfuncdef = pidentifier .>>.? ((sepBy1 pidentifier pcomma) .>>. (pequal >>. expr)) |>> (fun (a, (b, c)) -> FuncDef (a, b, c))
let sfuncdef = pidentifier .>>.? (((sepBy1 pidentifier pcomma)) .>>.? (pequal >>. expr)) |>> (fun (a, (b, c)) -> FuncDef (a, b, c))
let svarset = pidentifier .>>.? (pequal >>. expr) |>> VarSet

BIN
fskalc

Binary file not shown.

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<ItemGroup>