wit icon indicating copy to clipboard operation
wit copied to clipboard

This is a template engine, all written in Java

Results 8 wit issues
Sort by recently updated
recently updated
newest added

RT 执行带有 Loops 检查的 Statement 数组时, 每执行完一层 Statement 都会检查一次状态, 在 loops 分布稀疏的情况下, 将不需要检查的相邻的 Statement 合并成一个, 将有效减少检查次数

目前已支持简单的数组赋值: ```js [a, b, c] = [1, 2, 3]; ``` 事实上 ES6 支持的 [模式匹配] 更为复杂 ```js var [foo, [[bar], baz]] = [1, [[2], 3]]; foo // 1 bar // 2...

feature
TBD

例如加 function:递归变量

feature

- 限制单个循环次数 - 限制总循环次数

feature