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

jsgen: fix string and array for loops and improve casting (#9295)

This commit is contained in:
Leah Lundqvist
2021-03-14 07:20:01 +01:00
committed by GitHub
parent df46fe1373
commit 64d0006ff9
4 changed files with 52 additions and 38 deletions

View File

@ -1,6 +1,7 @@
module builtin
pub struct string {
pub:
str JS.String
len u32
}