Chromium Code Reviews| Index: runtime/vm/code_generator_test.cc |
| =================================================================== |
| --- runtime/vm/code_generator_test.cc (revision 25291) |
| +++ runtime/vm/code_generator_test.cc (working copy) |
| @@ -272,7 +272,7 @@ |
| static RawClass* LookupClass(const Library& lib, const char* name) { |
| const String& cls_name = String::ZoneHandle(Symbols::New(name)); |
| - return lib.LookupClass(cls_name); |
| + return lib.LookupClass(cls_name, NULL); |
| } |
|
siva
2013/07/22 22:21:46
Ditto case here in the places where LookupClass is
regis
2013/07/22 23:51:27
Done.
|
| @@ -552,7 +552,7 @@ |
| app_lib ^= libs.At(num_libs - 1); |
| ASSERT(!app_lib.IsNull()); |
| const Class& cls = Class::Handle( |
| - app_lib.LookupClass(String::Handle(Symbols::New("A")))); |
| + app_lib.LookupClass(String::Handle(Symbols::New("A")), NULL)); |
| EXPECT_EQ(cls.raw(), result.clazz()); |
| } |