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

js: os now compiles to the JS backend, more builtins & minor codegen fixes (#11302)

This commit is contained in:
playX
2021-08-25 14:40:53 +03:00
committed by GitHub
parent f257a23313
commit 109d5d5847
15 changed files with 479 additions and 369 deletions

View File

@@ -2,7 +2,15 @@ module builtin
pub fn (b byte) is_space() bool {
mut result := false
#result = /^\s*$/.test(String.fromCharCode(b))
#result.val = /^\s*$/.test(String.fromCharCode(b))
return result
}
pub fn (c byte) is_letter() bool {
result := false
#result.val = (c.val >= `a`.charCodeAt() && c.val <= `z`.charCodeAt()) || (c.val >= `A`.charCodeAt() && c.val <= `Z`.charCodeAt())
return result
}