renamed "canonicaltypevariabletype" to "canonical_type_variable_type"

This commit is contained in:
Erik Krogh Kristensen
2020-09-04 11:55:00 +02:00
parent 1d9dd92389
commit 11214b574e
3 changed files with 4 additions and 4 deletions

View File

@@ -620,7 +620,7 @@ case @type.kind of
| 5 = @false_type
| 6 = @type_reference
| 7 = @object_type
| 8 = @canonicaltypevariabletype
| 8 = @canonical_type_variable_type
| 9 = @typeoftype
| 10 = @voidtype
| 11 = @undefinedtype
@@ -643,7 +643,7 @@ case @type.kind of
@booleanliteraltype = @true_type | @false_type;
@symbol_type = @plainsymboltype | @uniquesymboltype;
@union_or_intersection_type = @union_type | @intersectiontype;
@typevariable_type = @canonicaltypevariabletype | @lexicaltypevariabletype;
@typevariable_type = @canonical_type_variable_type | @lexicaltypevariabletype;
has_asserts_keyword(int node: @predicate_typeexpr ref);