No description
Find a file
sgjesse@google.com 6082783a04 Fix 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=

Review URL: https://codereview.chromium.org//13866012

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@21200 260f80e4-7a28-3924-810f-c04153c831b5
2013-04-10 13:41:32 +00:00
client Don't run the old annotated step script on our dart-editor-fyi-* builders 2013-04-02 16:51:41 +00:00
compiler Deprecate Collection class. 2013-04-03 16:08:48 +00:00
pkg Remove HttpClientRequest.response, as it's identical to HttpClientRequest.done. 2013-04-10 12:54:23 +00:00
runtime Fix issue with serializing typed array views 2013-04-10 13:41:32 +00:00
sdk dart:io | Ensure that Directory.list terminates even when symbolic links create loops in the file system. 2013-04-10 13:07:08 +00:00
tests dart:io | Ensure that Directory.list terminates even when symbolic links create loops in the file system. 2013-04-10 13:07:08 +00:00
tools Make default argument to Iterable.join be "". 2013-04-10 11:28:32 +00:00
utils Revert dartdoc documenting exports. 2013-04-10 01:01:08 +00:00
.gitignore ignore tools/xcodebuild 2013-03-27 17:42:24 +00:00
codereview.settings update codereview.settings for open-sourcing. 2011-10-10 06:43:32 +00:00
dart.gyp TBR revert 21195 - add analyzer to the sdk. 2013-04-10 12:05:49 +00:00
PRESUBMIT.py Add gcl presubmit script to the dart src tree. 2012-08-30 06:11:22 +00:00
README Clarify some documentation around runes, aka code points 2013-03-13 08:32:29 +00:00
README.dart-sdk Add a version file to the SDK (in preparation for eventually removing the revision file). 2012-10-23 19:45:24 +00:00

This is the repository of the Dart programming language and its associated
tools, libraries, and samples.

For license information, please see LICENSE.

You can find more about Dart online at http://dartlang.org or
http://code.google.com/p/dart.

Here's a brief guide to what's in here:

compiler/      Dart static analyzer.
editor/        Eclipse-based standalone Dart IDE.
lib/           Libraries that ship with the Dart runtime (core, html, etc.).
pkg/           Packages that are not shipped with the core runtime.
runtime/       Dart VM and code for running it as a standalone app.
samples/       Sample Dart programs. 
tests/         Automated tests.
third_party/   External dependencies.
tools/         Build scripts, text editor support files, etc.
utils/         Utilities for Dart applications.