Open gfwilliams opened 9 years ago
Currently a simple FOR loop can fall off the fast path:
var l = "Hello".length; for (var i=0;i<l;i++) ;
Will generate code that does 'l' (and hence the comparison) with JsVars instead of ints
Currently a simple FOR loop can fall off the fast path:
Will generate code that does 'l' (and hence the comparison) with JsVars instead of ints