| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // This code was auto-generated, is not intended to be edited, and is subject to |
| 6 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
| 7 | 7 |
| 8 library engine.all_the_rest_test; | 8 library engine.all_the_rest_test; |
| 9 | 9 |
| 10 import 'dart:collection'; | 10 import 'dart:collection'; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 import 'package:analyzer/src/generated/java_io.dart'; | 21 import 'package:analyzer/src/generated/java_io.dart'; |
| 22 import 'package:analyzer/src/generated/resolver.dart'; | 22 import 'package:analyzer/src/generated/resolver.dart'; |
| 23 import 'package:analyzer/src/generated/scanner.dart'; | 23 import 'package:analyzer/src/generated/scanner.dart'; |
| 24 import 'package:analyzer/src/generated/sdk.dart'; | 24 import 'package:analyzer/src/generated/sdk.dart'; |
| 25 import 'package:analyzer/src/generated/sdk_io.dart'; | 25 import 'package:analyzer/src/generated/sdk_io.dart'; |
| 26 import 'package:analyzer/src/generated/source.dart'; | 26 import 'package:analyzer/src/generated/source.dart'; |
| 27 import 'package:analyzer/src/generated/source_io.dart'; | 27 import 'package:analyzer/src/generated/source_io.dart'; |
| 28 import 'package:analyzer/src/generated/testing/ast_factory.dart'; | 28 import 'package:analyzer/src/generated/testing/ast_factory.dart'; |
| 29 import 'package:analyzer/src/generated/testing/element_factory.dart'; | 29 import 'package:analyzer/src/generated/testing/element_factory.dart'; |
| 30 import 'package:analyzer/src/generated/testing/html_factory.dart'; | 30 import 'package:analyzer/src/generated/testing/html_factory.dart'; |
| 31 import 'package:analyzer/src/generated/testing/test_type_provider.dart'; |
| 31 import 'package:analyzer/src/generated/utilities_collection.dart'; | 32 import 'package:analyzer/src/generated/utilities_collection.dart'; |
| 32 import 'package:analyzer/src/generated/utilities_dart.dart'; | 33 import 'package:analyzer/src/generated/utilities_dart.dart'; |
| 33 import 'package:unittest/unittest.dart'; | 34 import 'package:unittest/unittest.dart'; |
| 34 | 35 |
| 35 import '../reflective_tests.dart'; | 36 import '../reflective_tests.dart'; |
| 36 import 'parser_test.dart'; | 37 import 'parser_test.dart'; |
| 37 import 'resolver_test.dart'; | 38 import 'resolver_test.dart'; |
| 38 import 'test_support.dart'; | 39 import 'test_support.dart'; |
| 39 | 40 |
| 40 | 41 |
| (...skipping 8784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8825 } else { | 8826 } else { |
| 8826 expect(scriptSource, isNotNull, reason: "script $scriptIndex"); | 8827 expect(scriptSource, isNotNull, reason: "script $scriptIndex"); |
| 8827 String actualExternalScriptName = scriptSource.shortName; | 8828 String actualExternalScriptName = scriptSource.shortName; |
| 8828 expect( | 8829 expect( |
| 8829 actualExternalScriptName, | 8830 actualExternalScriptName, |
| 8830 _expectedExternalScriptName, | 8831 _expectedExternalScriptName, |
| 8831 reason: "script $scriptIndex"); | 8832 reason: "script $scriptIndex"); |
| 8832 } | 8833 } |
| 8833 } | 8834 } |
| 8834 } | 8835 } |
| OLD | NEW |