1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

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

This commit is contained in:
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

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 {