| Index: runtime/vm/exceptions_test.cc
|
| ===================================================================
|
| --- runtime/vm/exceptions_test.cc (revision 31283)
|
| +++ runtime/vm/exceptions_test.cc (working copy)
|
| @@ -76,7 +76,10 @@
|
|
|
|
|
| static Dart_NativeFunction native_lookup(Dart_Handle name,
|
| - int argument_count) {
|
| + int argument_count,
|
| + bool* auto_setup_scope) {
|
| + ASSERT(auto_setup_scope != NULL);
|
| + *auto_setup_scope = false;
|
| const Object& obj = Object::Handle(Api::UnwrapHandle(name));
|
| ASSERT(obj.IsString());
|
| const char* function_name = obj.ToCString();
|
|
|