| Index: dart/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
|
| diff --git a/dart/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java b/dart/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
|
| index 2d614f39d9f5188183c8a5886d3d6b040f7e7711..f016f2a7b3fd91d2878e0803b86c67a8bdb31611 100644
|
| --- a/dart/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
|
| +++ b/dart/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
|
| @@ -672,7 +672,7 @@ public class TypeAnalyzerCompilerTest extends CompilerTestCase {
|
| analyzeLibrary(
|
| "class A {",
|
| " void foo();",
|
| - " noSuchMethod(InvocationMirror m) {}",
|
| + " noSuchMethod(Invocation m) {}",
|
| "}",
|
| "main() {",
|
| " new A();",
|
| @@ -693,7 +693,7 @@ public class TypeAnalyzerCompilerTest extends CompilerTestCase {
|
| analyzeLibrary(
|
| "class A {",
|
| " void foo();",
|
| - " noSuchMethod(InvocationMirror m) {}",
|
| + " noSuchMethod(Invocation m) {}",
|
| "}",
|
| "main() {",
|
| " new A();",
|
| @@ -5354,7 +5354,7 @@ public class TypeAnalyzerCompilerTest extends CompilerTestCase {
|
| String[] lines = {
|
| "// filler filler filler filler filler filler filler filler filler filler",
|
| "class A {",
|
| - " noSuchMethod(InvocationMirror invocation) {}",
|
| + " noSuchMethod(Invocation invocation) {}",
|
| "}",
|
| "class B extends A {}",
|
| "class C {}",
|
| @@ -5396,7 +5396,7 @@ public class TypeAnalyzerCompilerTest extends CompilerTestCase {
|
| String[] lines = {
|
| "// filler filler filler filler filler filler filler filler filler filler",
|
| "class A {",
|
| - " noSuchMethod(InvocationMirror invocation) {}",
|
| + " noSuchMethod(Invocation invocation) {}",
|
| "}",
|
| "class B extends A {}",
|
| "class C {}",
|
| @@ -5436,7 +5436,7 @@ public class TypeAnalyzerCompilerTest extends CompilerTestCase {
|
| String[] lines = {
|
| "// filler filler filler filler filler filler filler filler filler filler",
|
| "class A {",
|
| - " noSuchMethod(InvocationMirror invocation) {}",
|
| + " noSuchMethod(Invocation invocation) {}",
|
| "}",
|
| "class B extends A {}",
|
| "class C {}",
|
|
|