commit 33a6e87b60b37fc7c5815f075ca0e856aff9ecee
parent 5500c505e2b6cd76cd7b7d28e306cfc1d0b2bed7
Author: Eyal Sawady <ecs@d2evs.net>
Date: Fri, 7 May 2021 13:07:00 -0400
hare::parse: add float constant tests
This is what caught the bug fixed by 48673fc10e182c6dc0651f80459249c8bfc82213
Signed-off-by: Eyal Sawady <ecs@d2evs.net>
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/hare/parse/+test/expr.ha b/hare/parse/+test/expr.ha
@@ -121,6 +121,11 @@
coords {
...
};
+ 13.37;
+ 13.37;
+ 13.37;
+ 6.022e23;
+ 1.616255e-35;
};
");
};