| Index: tests/compiler/dart2js/find_my_name_test.dart
|
| diff --git a/tests/compiler/dart2js/find_my_name_test.dart b/tests/compiler/dart2js/find_my_name_test.dart
|
| index 4fbdfb0d934b21c1a077bf5835b0a246aa4ebcc0..bd46c30374ba8ef9fc69ea6d684b022b5fac8a32 100644
|
| --- a/tests/compiler/dart2js/find_my_name_test.dart
|
| +++ b/tests/compiler/dart2js/find_my_name_test.dart
|
| @@ -7,6 +7,7 @@ import "package:async_helper/async_helper.dart";
|
| import "package:compiler/implementation/elements/elements.dart";
|
| import "mock_compiler.dart";
|
| import "parser_helper.dart";
|
| +import 'package:compiler/implementation/elements/modelx.dart';
|
|
|
| String TEST_0 = '''
|
| class Foo {
|
| @@ -34,7 +35,7 @@ main() {
|
|
|
| testClass(String code, MockCompiler compiler) {
|
| int skip = code.indexOf('{');
|
| - ClassElement cls = parseUnit(code, compiler, compiler.mainApp).head;
|
| + ClassElementX cls = parseUnit(code, compiler, compiler.mainApp).head;
|
| cls.parseNode(compiler);
|
| cls.forEachLocalMember((Element e) {
|
| String name = e.name;
|
|
|