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

js,checker: fix some modules build for v -b js self, fix or block check in ast.CallExpr (#12231)

This commit is contained in:
playX
2021-10-19 12:11:54 +03:00
committed by GitHub
parent 39c3817ce4
commit c1aa782a6c
11 changed files with 314 additions and 245 deletions

View File

@ -77,6 +77,13 @@ pub fn (x u64) hex() string {
return res
}
pub fn (x u64) hex_full() string {
res := ''
#res.str = x.val.toString(16)
return res
}
pub fn (x i64) hex() string {
res := ''
#res.str = x.val.toString(16)