Both VM and dart2js benefit from tagging when operating with <int>[...], dart2wasm however boxes integers stored in the list - which makes it slow compared to native and JS targets.
This impacts a number of microbenchmarks like Fannkuch or Mandelbrot, which use List<int> on hot paths.