Skip to content

Commit

Permalink
Comment out the test for unimplemented functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
Smaug123 committed Jan 22, 2024
1 parent a3bb146 commit 6a752cc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions PrattParser.Test/TestParser.fs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ module TestParser =
(Expr.paren (Expr.ifThenElse (Expr.plus (Expr.var "x") (Expr.constInt 1)) (Expr.var "y") (Expr.var "z")))
(Expr.constInt 3)

(*
// TODO: implement
"g x y + a * (func b c)",
let gXY =
Expr.functionCall (Expr.functionCall (Expr.var "g") (Expr.var "x")) (Expr.var "y")
Expand All @@ -65,6 +67,7 @@ module TestParser =
Expr.functionCall (Expr.Var "func") (Expr.plus (Expr.Var "b") (Expr.Var "c"))
Expr.plus gXY (Expr.times (Expr.Var "a") fAPlusB)
*)

]
|> List.map TestCaseData
Expand Down

0 comments on commit 6a752cc

Please sign in to comment.