@@ -650,7 +650,7 @@ class Benchmark {
650650                __benchmark.runIteration(); 
651651                let end = performance.now(); 
652652
653-                 //  performance.measure(iterationMarkLabel, iterationMarkLabel); 
653+                 performance.measure(iterationMarkLabel, iterationMarkLabel); 
654654
655655                ${ this . postIterationCode }  
656656
@@ -1173,7 +1173,7 @@ class AsyncBenchmark extends DefaultBenchmark {
11731173                await __benchmark.runIteration(); 
11741174                let end = performance.now(); 
11751175
1176-                 //  performance.measure(iterationMarkLabel, iterationMarkLabel); 
1176+                 performance.measure(iterationMarkLabel, iterationMarkLabel); 
11771177
11781178                ${ this . postIterationCode }  
11791179
@@ -1272,7 +1272,7 @@ class WSLBenchmark extends Benchmark {
12721272                benchmark.buildStdlib(); 
12731273                results.push(performance.now() - start); 
12741274
1275-                 //  performance.measure(markLabel, markLabel); 
1275+                 performance.measure(markLabel, markLabel); 
12761276            } 
12771277
12781278            { 
@@ -1283,7 +1283,7 @@ class WSLBenchmark extends Benchmark {
12831283                benchmark.run(); 
12841284                results.push(performance.now() - start); 
12851285
1286-                 //  performance.measure(markLabel, markLabel); 
1286+                 performance.measure(markLabel, markLabel); 
12871287            } 
12881288
12891289            top.currentResolve(results); 
@@ -2073,6 +2073,7 @@ let BENCHMARKS = [
20732073        iterations : 15 , 
20742074        worstCaseCount : 2 , 
20752075        tags : [ "Wasm" ] , 
2076+         disabledByDefault : true , 
20762077    } ) , 
20772078    new  WasmEMCCBenchmark ( { 
20782079        name : "Dart-flute-todomvc-wasm" , 
@@ -2083,7 +2084,7 @@ let BENCHMARKS = [
20832084            jsModule : "./Dart/build/flute.todomvc.dart2wasm.mjs" , 
20842085            wasmBinary : "./Dart/build/flute.todomvc.dart2wasm.wasm" , 
20852086        } , 
2086-         iterations : 15 , 
2087+         iterations : 30 , 
20872088        worstCaseCount : 2 , 
20882089        tags : [ "Wasm" ] , 
20892090    } ) , 
0 commit comments