| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'package:compiler/src/compiler.dart' show Compiler; | 5 import 'package:compiler/src/compiler.dart' show Compiler; |
| 6 import 'package:compiler/src/elements/elements.dart'; | 6 import 'package:compiler/src/elements/elements.dart'; |
| 7 import 'package:test/test.dart'; | 7 import 'package:test/test.dart'; |
| 8 | 8 |
| 9 import 'helper.dart' show check; | 9 import 'helper.dart' show check; |
| 10 | 10 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 } | 63 } |
| 64 } | 64 } |
| 65 | 65 |
| 66 main() => new Foo(); | 66 main() => new Foo(); |
| 67 '''; | 67 '''; |
| 68 return check(code, lookup: defaultConstructorFor('Foo')); | 68 return check(code, lookup: defaultConstructorFor('Foo')); |
| 69 });*/ | 69 });*/ |
| 70 } | 70 } |
| 71 | 71 |
| 72 defaultConstructorFor(String className) => (Compiler compiler) { | 72 defaultConstructorFor(String className) => (Compiler compiler) { |
| 73 LibraryElement mainApp = compiler.mainApp; | 73 LibraryElement mainApp = |
| 74 compiler.frontendStrategy.elementEnvironment.mainLibrary; |
| 74 ClassElement clazz = mainApp.find(className); | 75 ClassElement clazz = mainApp.find(className); |
| 75 return clazz.lookupDefaultConstructor(); | 76 return clazz.lookupDefaultConstructor(); |
| 76 }; | 77 }; |
| OLD | NEW |