renamed "typeidentifier" to "type_identifier"

This commit is contained in:
Erik Krogh Kristensen
2020-09-04 11:54:53 +02:00
parent e2e10c3a75
commit 62afd50d71

View File

@@ -359,7 +359,7 @@ case @expr.kind of
@varaccess = @proper_varaccess | @export_varaccess;
@varref = @var_decl | @varaccess;
@identifier = @label | @varref | @typeidentifier;
@identifier = @label | @varref | @type_identifier;
@literal = @null_literal | @boolean_literal | @number_literal | @string_literal | @regexp_literal | @bigint_literal;
@@ -587,7 +587,7 @@ case @typeexpr.kind of
;
@typeref = @typeaccess | @type_decl;
@typeidentifier = @type_decl | @local_type_access | @type_label | @local_var_type_access | @local_namespace_access;
@type_identifier = @type_decl | @local_type_access | @type_label | @local_var_type_access | @local_namespace_access;
@typeexpr_parent = @expr | @stmt | @property | @typeexpr;
@literal_typeexpr = @string_literal_typeexpr | @number_literal_typeexpr | @boolean_literal_typeexpr | @bigint_literal_typeexpr;
@typeaccess = @local_type_access | @qualified_type_access | @import_type_access;