| Index: tests/compiler/dart2js/patch_test.dart
|
| diff --git a/tests/compiler/dart2js/patch_test.dart b/tests/compiler/dart2js/patch_test.dart
|
| index 5ac187ecfbb5dc788aa2fcf05d691d66bd8e4f17..3397230e6d44ed50506ec43b4240f728eeb85cbb 100644
|
| --- a/tests/compiler/dart2js/patch_test.dart
|
| +++ b/tests/compiler/dart2js/patch_test.dart
|
| @@ -16,7 +16,6 @@ Compiler applyPatch(String script, String patch) {
|
| var uri = new Uri("core.dartp");
|
| compiler.sourceFiles[uri.toString()] = new MockFile(patch);
|
| compiler.patchParser.patchLibrary(uri, compiler.coreLibrary);
|
| - compiler.applyClassPatches(compiler.coreLibrary);
|
| return compiler;
|
| }
|
|
|
| @@ -66,6 +65,7 @@ testPatchMember() {
|
| }
|
| """);
|
| var container = ensure(compiler, "Class", compiler.coreLibrary.find);
|
| + container.parseNode(compiler);
|
| ensure(compiler, "toString", container.lookupLocalMember, hasBody:true);
|
| }
|
|
|
| @@ -82,6 +82,7 @@ testPatchGetter() {
|
| }
|
| """);
|
| var container = ensure(compiler, "Class", compiler.coreLibrary.find);
|
| + container.parseNode(compiler);
|
| ensure(compiler,
|
| "field",
|
| container.lookupLocalMember,
|
|
|