all: rename `any_*` -> `*_literal` - 1. part (#8031)

pull/8032/head
Uwe Krüger 2021-01-11 22:20:16 +01:00 committed by GitHub
parent 5d6e9f7bf9
commit 91f87c03cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -336,10 +336,10 @@ pub fn (mut p Parser) parse_any_type(language table.Language, is_ptr bool, check
'bool' {
return table.bool_type
}
'any_float' {
'any_float', 'float_literal' {
return table.any_flt_type
}
'any_int' {
'any_int', 'int_literal' {
return table.any_int_type
}
else {