Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: runtime/lib/growable_array.cc

Issue 134893003: Add internal operation that converts a growable list to a fixed list. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make top-level patch file native. Add comment. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/lib/internal_patch.dart » ('j') | runtime/vm/parser.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "platform/assert.h" 5 #include "platform/assert.h"
6 6
7 #include "vm/assembler.h" 7 #include "vm/assembler.h"
8 #include "vm/bootstrap_natives.h" 8 #include "vm/bootstrap_natives.h"
9 #include "vm/exceptions.h" 9 #include "vm/exceptions.h"
10 #include "vm/native_entry.h" 10 #include "vm/native_entry.h"
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 84
85 DEFINE_NATIVE_ENTRY(GrowableList_setData, 2) { 85 DEFINE_NATIVE_ENTRY(GrowableList_setData, 2) {
86 const GrowableObjectArray& array = 86 const GrowableObjectArray& array =
87 GrowableObjectArray::CheckedHandle(arguments->NativeArgAt(0)); 87 GrowableObjectArray::CheckedHandle(arguments->NativeArgAt(0));
88 GET_NON_NULL_NATIVE_ARGUMENT(Array, data, arguments->NativeArgAt(1)); 88 GET_NON_NULL_NATIVE_ARGUMENT(Array, data, arguments->NativeArgAt(1));
89 ASSERT(data.Length() > 0); 89 ASSERT(data.Length() > 0);
90 array.SetData(data); 90 array.SetData(data);
91 return Object::null(); 91 return Object::null();
92 } 92 }
93 93
94
95 DEFINE_NATIVE_ENTRY(Internal_makeListFixedLength, 1) {
96 GET_NON_NULL_NATIVE_ARGUMENT(GrowableObjectArray, array,
97 arguments->NativeArgAt(0));
98 return Array::MakeArray(array);
99 }
100
94 } // namespace dart 101 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | runtime/lib/internal_patch.dart » ('j') | runtime/vm/parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698