Fix bug with op-assignment.

This commit is contained in:
Stephen Chung
2021-02-24 16:17:04 +08:00
parent 9d6ad2092c
commit 37540fda12
2 changed files with 5 additions and 4 deletions

View File

@@ -126,7 +126,7 @@ fn bench_eval_loop_number(bench: &mut Bencher) {
#[bench]
fn bench_eval_loop_strings_build(bench: &mut Bencher) {
let script = r#"
let s = 0;
let s = "hello";
for x in range(0, 10000) {
s += "x";
}