all: rename `any_*` -> `*_literal` - 1. part (#8031)
parent
5d6e9f7bf9
commit
91f87c03cf
|
@ -336,10 +336,10 @@ pub fn (mut p Parser) parse_any_type(language table.Language, is_ptr bool, check
|
||||||
'bool' {
|
'bool' {
|
||||||
return table.bool_type
|
return table.bool_type
|
||||||
}
|
}
|
||||||
'any_float' {
|
'any_float', 'float_literal' {
|
||||||
return table.any_flt_type
|
return table.any_flt_type
|
||||||
}
|
}
|
||||||
'any_int' {
|
'any_int', 'int_literal' {
|
||||||
return table.any_int_type
|
return table.any_int_type
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue