Chromium Code Reviews| Index: runtime/vm/find_code_object_test.cc |
| =================================================================== |
| --- runtime/vm/find_code_object_test.cc (revision 25291) |
| +++ runtime/vm/find_code_object_test.cc (working copy) |
| @@ -53,7 +53,7 @@ |
| source = String::New(scriptChars); |
| script = Script::New(url, source, RawScript::kScriptTag); |
| EXPECT(CompilerTest::TestCompileScript(lib, script)); |
| - clsA = lib.LookupClass(String::Handle(Symbols::New("A"))); |
| + clsA = lib.LookupClass(String::Handle(Symbols::New("A")), NULL); |
| EXPECT(!clsA.IsNull()); |
| ClassFinalizer::FinalizePendingClasses(); |
| for (int i = 0; i < kNumFunctions; i++) { |
| @@ -101,7 +101,7 @@ |
| source = String::New(scriptChars); |
| script = Script::New(url, source, RawScript::kScriptTag); |
| EXPECT(CompilerTest::TestCompileScript(lib, script)); |
| - clsB = lib.LookupClass(String::Handle(Symbols::New("B"))); |
| + clsB = lib.LookupClass(String::Handle(Symbols::New("B")), NULL); |
| EXPECT(!clsB.IsNull()); |
|
siva
2013/07/22 22:21:46
Ditto comment about tests.
regis
2013/07/22 23:51:27
Done.
|
| ClassFinalizer::FinalizePendingClasses(); |
| for (int i = 0; i < kNumFunctions; i++) { |