js: use prefixed names for functions and global symbols (#11387)

This commit is contained in:
playX 2021-09-08 20:30:46 +03:00 committed by GitHub
parent 96d4a0777f
commit 72089c4feb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 1895 additions and 357 deletions

View file

@ -14,3 +14,10 @@ pub fn (c byte) is_letter() bool {
return result
}
pub fn (c byte) str() string {
res := ''
#res.str = c.val.toString()
return res
}