Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Unified Diff: dart/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java

Issue 14049009: Rename Invocation to InvocationMirror. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | dart/pkg/pkg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {}",
« no previous file with comments | « no previous file | dart/pkg/pkg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698