DescriptionFix issue with serializing typed array views
This makes the code
void isolate() {
port.receive(print);
}
main() {
Uint8List list = new Uint8List(1);
spawnFunction(isolate).send([1, new Uint8List.view(list.buffer, 0, 1)]);
}
not crash.
R=asiva@google.com
BUG=
Committed: https://code.google.com/p/dart/source/detail?r=21200
Patch Set 1 #
Total comments: 2
Patch Set 2 : Addressed review comments #Messages
Total messages: 4 (0 generated)
|