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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
}