Chromium Code Reviews| Index: runtime/vm/compiler_test.cc |
| =================================================================== |
| --- runtime/vm/compiler_test.cc (revision 27297) |
| +++ runtime/vm/compiler_test.cc (working copy) |
| @@ -43,9 +43,8 @@ |
| Library& lib = Library::Handle(Library::CoreLibrary()); |
| EXPECT(CompilerTest::TestCompileScript(lib, script)); |
| EXPECT(ClassFinalizer::FinalizePendingClasses()); |
| - String& ambiguity_error_msg = String::Handle(); |
| Class& cls = Class::Handle( |
| - lib.LookupClass(String::Handle(Symbols::New("A")), &ambiguity_error_msg)); |
| + lib.LookupClass(String::Handle(Symbols::New("A")))); |
| EXPECT(!cls.IsNull()); // No ambiguity error expected. |
|
regis
2013/09/09 21:29:07
ditto
hausner
2013/09/09 21:52:08
Done.
|
| String& function_foo_name = String::Handle(String::New("foo")); |
| Function& function_foo = |