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

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

Issue 11312019: Remove references to ObjectNotClosureException and ClosureArgumentMismatchException (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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
OLDNEW
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->At(0)); 14 const Instance& instance = Instance::CheckedHandle(arguments->At(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 = Instance::CheckedHandle(arguments->At(0)); 21 const Instance& instance = Instance::CheckedHandle(arguments->At(0));
22 GET_NATIVE_ARGUMENT(String, function_name, arguments->At(1)); 22 GET_NATIVE_ARGUMENT(String, function_name, arguments->At(1));
23 GET_NATIVE_ARGUMENT(Array, func_args, arguments->At(2)); 23 GET_NATIVE_ARGUMENT(Array, func_args, arguments->At(2));
24 if (instance.IsNull()) { 24 if (instance.IsNull()) {
25 GrowableArray<const Object*> args; 25 GrowableArray<const Object*> args;
26 args.Add(&function_name); 26 args.Add(&function_name);
27 args.Add(&func_args); 27 args.Add(&func_args);
28 // TODO(regis): Change to Exceptions::kNoSuchMethod.
srdjan 2012/10/31 17:52:51 Remove the TODO since this has not been agreed upo
regis 2012/10/31 18:04:37 Done.
28 Exceptions::ThrowByType(Exceptions::kNullPointer, args); 29 Exceptions::ThrowByType(Exceptions::kNullPointer, args);
29 } 30 }
30 const Object& null_object = Object::Handle(Object::null()); 31 const Object& null_object = Object::Handle(Object::null());
31 GrowableArray<const Object*> dart_arguments(3); 32 GrowableArray<const Object*> dart_arguments(3);
32 dart_arguments.Add(&instance); 33 dart_arguments.Add(&instance);
33 dart_arguments.Add(&function_name); 34 dart_arguments.Add(&function_name);
34 dart_arguments.Add(&func_args); 35 dart_arguments.Add(&func_args);
35 dart_arguments.Add(&null_object); 36 dart_arguments.Add(&null_object);
36 37
37 // Report if a function with same name (but different arguments) has been 38 // Report if a function with same name (but different arguments) has been
(...skipping 26 matching lines...) Expand all
64 return type.Canonicalize(); 65 return type.Canonicalize();
65 } 66 }
66 67
67 68
68 DEFINE_NATIVE_ENTRY(AbstractType_toString, 1) { 69 DEFINE_NATIVE_ENTRY(AbstractType_toString, 1) {
69 const AbstractType& type = AbstractType::CheckedHandle(arguments->At(0)); 70 const AbstractType& type = AbstractType::CheckedHandle(arguments->At(0));
70 return type.Name(); 71 return type.Name();
71 } 72 }
72 73
73 } // namespace dart 74 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698