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:
@ -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)
|
||||
|
Reference in New Issue
Block a user