|
|
Add ByteArray interface and provide internal and external implementations.
The new ByteArray interface supersedes the ByteBuffer type which allowed
only external data storage. This type has been removed and replaced by
the more flexible ByteArray with a default implementation that stores its
elements on the managed heap.
Committed: https://code.google.com/p/dart/source/detail?r=3613
Total comments: 34
Total comments: 16
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+1376 lines, -578 lines) |
Patch |
 |
M |
runtime/include/dart_api.h
|
View
|
1
|
1 chunk |
+9 lines, -0 lines |
0 comments
|
Download
|
 |
A |
runtime/lib/byte_array.cc
|
View
|
1
2
3
4
|
1 chunk |
+258 lines, -0 lines |
0 comments
|
Download
|
 |
A |
runtime/lib/byte_array.dart
|
View
|
1
2
3
4
5
|
1 chunk |
+489 lines, -0 lines |
0 comments
|
Download
|
 |
D |
runtime/lib/byte_buffer.cc
|
View
|
|
1 chunk |
+0 lines, -233 lines |
0 comments
|
Download
|
 |
D |
runtime/lib/byte_buffer.dart
|
View
|
|
1 chunk |
+0 lines, -226 lines |
0 comments
|
Download
|
 |
M |
runtime/lib/lib_sources.gypi
|
View
|
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/bootstrap_natives.h
|
View
|
|
1 chunk |
+42 lines, -22 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/class_finalizer.cc
|
View
|
|
2 chunks |
+7 lines, -4 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/dart_api_impl.cc
|
View
|
1
2
3
4
5
|
2 chunks |
+19 lines, -1 line |
0 comments
|
Download
|
 |
M |
runtime/vm/dart_api_impl_test.cc
|
View
|
1
|
1 chunk |
+53 lines, -0 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/object.h
|
View
|
1
2
3
4
5
|
4 chunks |
+95 lines, -7 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/object.cc
|
View
|
1
2
3
4
5
|
7 chunks |
+91 lines, -34 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/object_store.h
|
View
|
|
4 chunks |
+23 lines, -5 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/object_store.cc
|
View
|
|
5 chunks |
+12 lines, -4 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/object_test.cc
|
View
|
1
|
5 chunks |
+128 lines, -24 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/raw_object.h
|
View
|
|
2 chunks |
+23 lines, -3 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/raw_object.cc
|
View
|
|
2 chunks |
+28 lines, -3 lines |
0 comments
|
Download
|
 |
M |
runtime/vm/raw_object_snapshot.cc
|
View
|
|
1 chunk |
+97 lines, -10 lines |
0 comments
|
Download
|
Total messages: 8 (0 generated)
|