Question
Will isolates in Dart run in parallel utilizing all available cores on a multiple core environment, or will it multiplex on a single core?
Background
Google has described isolates (a single-threaded unit of concurrency) in the Dart programming language as a "light weight thread" that operates on the main stack, without blocking.
Thus, it seems to me as it will only be able to multiplex on a single core and not be able to run in parallel over multiple cores in a SMP, dualcore, multicore or clustered environment.
Though, I can't find any information on this, hence my humble question.