| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 "vm/bootstrap_natives.h" | 5 #include "vm/bootstrap_natives.h" |
| 6 | 6 |
| 7 #include "vm/exceptions.h" | 7 #include "vm/exceptions.h" |
| 8 #include "vm/native_entry.h" | 8 #include "vm/native_entry.h" |
| 9 #include "vm/object.h" | 9 #include "vm/object.h" |
| 10 | 10 |
| 11 namespace dart { | 11 namespace dart { |
| 12 | 12 |
| 13 DEFINE_NATIVE_ENTRY(Object_toString, 1) { | 13 DEFINE_NATIVE_ENTRY(Object_toString, 1) { |
| 14 const Instance& instance = Instance::CheckedHandle(arguments->NativeArgAt(0)); | 14 const Instance& instance = Instance::CheckedHandle(arguments->NativeArgAt(0)); |
| 15 const char* c_str = instance.ToCString(); | 15 const char* c_str = instance.ToCString(); |
| 16 return String::New(c_str); | 16 return String::New(c_str); |
| 17 } | 17 } |
| 18 | 18 |
| 19 | 19 |
| 20 DEFINE_NATIVE_ENTRY(Object_noSuchMethod, 3) { | 20 DEFINE_NATIVE_ENTRY(Object_noSuchMethod, 3) { |
| 21 const Instance& instance = | 21 const Instance& instance = |
| 22 Instance::CheckedHandle(arguments->NativeArgAt(0)); | 22 Instance::CheckedHandle(arguments->NativeArgAt(0)); |
| 23 GET_NATIVE_ARGUMENT(String, function_name, arguments->NativeArgAt(1)); | 23 GET_NON_NULL_NATIVE_ARGUMENT( |
| 24 GET_NATIVE_ARGUMENT(Array, func_args, arguments->NativeArgAt(2)); | 24 String, function_name, arguments->NativeArgAt(1)); |
| 25 GET_NON_NULL_NATIVE_ARGUMENT(Array, func_args, arguments->NativeArgAt(2)); |
| 25 const Object& null_object = Object::Handle(Object::null()); | 26 const Object& null_object = Object::Handle(Object::null()); |
| 26 GrowableArray<const Object*> dart_arguments(4); | 27 GrowableArray<const Object*> dart_arguments(4); |
| 27 dart_arguments.Add(&instance); | 28 dart_arguments.Add(&instance); |
| 28 dart_arguments.Add(&function_name); | 29 dart_arguments.Add(&function_name); |
| 29 dart_arguments.Add(&func_args); | 30 dart_arguments.Add(&func_args); |
| 30 dart_arguments.Add(&null_object); | 31 dart_arguments.Add(&null_object); |
| 31 | 32 |
| 32 // Report if a function with same name (but different arguments) has been | 33 // Report if a function with same name (but different arguments) has been |
| 33 // found. | 34 // found. |
| 34 Class& instance_class = Class::Handle(instance.clazz()); | 35 Class& instance_class = Class::Handle(instance.clazz()); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 60 } | 61 } |
| 61 | 62 |
| 62 | 63 |
| 63 DEFINE_NATIVE_ENTRY(AbstractType_toString, 1) { | 64 DEFINE_NATIVE_ENTRY(AbstractType_toString, 1) { |
| 64 const AbstractType& type = | 65 const AbstractType& type = |
| 65 AbstractType::CheckedHandle(arguments->NativeArgAt(0)); | 66 AbstractType::CheckedHandle(arguments->NativeArgAt(0)); |
| 66 return type.Name(); | 67 return type.Name(); |
| 67 } | 68 } |
| 68 | 69 |
| 69 } // namespace dart | 70 } // namespace dart |
| OLD | NEW |