renamed "falsetype" to "false_type"

This commit is contained in:
Erik Krogh Kristensen
2020-09-04 11:54:57 +02:00
parent b3c3069c24
commit 01e3888c36
3 changed files with 4 additions and 4 deletions

View File

@@ -617,7 +617,7 @@ case @type.kind of
| 2 = @number_type
| 3 = @union_type
| 4 = @true_type
| 5 = @falsetype
| 5 = @false_type
| 6 = @typereference
| 7 = @objecttype
| 8 = @canonicaltypevariabletype
@@ -640,7 +640,7 @@ case @type.kind of
| 25 = @bigintliteraltype
;
@booleanliteraltype = @true_type | @falsetype;
@booleanliteraltype = @true_type | @false_type;
@symbol_type = @plainsymboltype | @uniquesymboltype;
@union_or_intersection_type = @union_type | @intersectiontype;
@typevariable_type = @canonicaltypevariabletype | @lexicaltypevariabletype;