| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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:expect/expect.dart"; | |
| 6 import '../../../sdk/lib/_internal/compiler/implementation/js_backend/js_backend
.dart'; | 5 import '../../../sdk/lib/_internal/compiler/implementation/js_backend/js_backend
.dart'; |
| 7 import '../../../sdk/lib/_internal/compiler/implementation/ssa/ssa.dart'; | 6 import '../../../sdk/lib/_internal/compiler/implementation/ssa/ssa.dart'; |
| 8 import '../../../sdk/lib/_internal/compiler/implementation/scanner/scannerlib.da
rt'; | 7 import '../../../sdk/lib/_internal/compiler/implementation/scanner/scannerlib.da
rt'; |
| 9 | 8 |
| 10 import 'compiler_helper.dart'; | 9 import 'compiler_helper.dart'; |
| 11 import 'parser_helper.dart'; | 10 import 'parser_helper.dart'; |
| 12 | 11 |
| 13 void compileAndFind(String code, | 12 void compileAndFind(String code, |
| 14 String className, | 13 String className, |
| 15 String memberName, | 14 String memberName, |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 'f2': HType.STRING, | 379 'f2': HType.STRING, |
| 381 'f3': HType.UNKNOWN}); | 380 'f3': HType.UNKNOWN}); |
| 382 runTest(TEST_19, {'f1': HType.UNKNOWN, | 381 runTest(TEST_19, {'f1': HType.UNKNOWN, |
| 383 'f2': HType.UNKNOWN, | 382 'f2': HType.UNKNOWN, |
| 384 'f3': HType.UNKNOWN}); | 383 'f3': HType.UNKNOWN}); |
| 385 } | 384 } |
| 386 | 385 |
| 387 void main() { | 386 void main() { |
| 388 test(); | 387 test(); |
| 389 } | 388 } |
| OLD | NEW |