| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |