| 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 library analyzer.test.src.summary.resynthesize_ast_test; | 5 library analyzer.test.src.summary.resynthesize_ast_test; |
| 6 | 6 |
| 7 import 'package:analyzer/dart/ast/ast.dart'; | 7 import 'package:analyzer/dart/ast/ast.dart'; |
| 8 import 'package:analyzer/dart/element/element.dart'; | 8 import 'package:analyzer/dart/element/element.dart'; |
| 9 import 'package:analyzer/src/dart/element/element.dart'; | 9 import 'package:analyzer/src/dart/element/element.dart'; |
| 10 import 'package:analyzer/src/generated/engine.dart' | 10 import 'package:analyzer/src/generated/engine.dart' |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 } | 326 } |
| 327 | 327 |
| 328 @override | 328 @override |
| 329 @failingTest | 329 @failingTest |
| 330 void test_inferenceInCyclesIsDeterministic() { | 330 void test_inferenceInCyclesIsDeterministic() { |
| 331 super.test_inferenceInCyclesIsDeterministic(); | 331 super.test_inferenceInCyclesIsDeterministic(); |
| 332 } | 332 } |
| 333 | 333 |
| 334 @override | 334 @override |
| 335 @failingTest | 335 @failingTest |
| 336 void test_inferFromRhsOnlyIfItWontConflictWithOverriddenFields() { | |
| 337 super.test_inferFromRhsOnlyIfItWontConflictWithOverriddenFields(); | |
| 338 } | |
| 339 | |
| 340 @override | |
| 341 @failingTest | |
| 342 void test_inferTypesOnGenericInstantiations_4() { | |
| 343 super.test_inferTypesOnGenericInstantiations_4(); | |
| 344 } | |
| 345 | |
| 346 @override | |
| 347 @failingTest | |
| 348 void test_inferTypesOnGenericInstantiations_5() { | 336 void test_inferTypesOnGenericInstantiations_5() { |
| 349 super.test_inferTypesOnGenericInstantiations_5(); | 337 super.test_inferTypesOnGenericInstantiations_5(); |
| 350 } | 338 } |
| 351 | 339 |
| 352 @override | 340 @override |
| 353 @failingTest | 341 @failingTest |
| 354 void test_inferTypesOnGenericInstantiationsInLibraryCycle() { | 342 void test_inferTypesOnGenericInstantiationsInLibraryCycle() { |
| 355 super.test_inferTypesOnGenericInstantiationsInLibraryCycle(); | 343 super.test_inferTypesOnGenericInstantiationsInLibraryCycle(); |
| 356 } | 344 } |
| 357 | 345 |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 } | 570 } |
| 583 | 571 |
| 584 UnlinkedUnit definingUnit = _getUnlinkedUnit(librarySource); | 572 UnlinkedUnit definingUnit = _getUnlinkedUnit(librarySource); |
| 585 LinkedLibraryBuilder linkedLibrary = | 573 LinkedLibraryBuilder linkedLibrary = |
| 586 prelink(definingUnit, getPart, getImport); | 574 prelink(definingUnit, getPart, getImport); |
| 587 linkedLibrary.dependencies.skip(1).forEach((LinkedDependency d) { | 575 linkedLibrary.dependencies.skip(1).forEach((LinkedDependency d) { |
| 588 _serializeLibrary(resolveRelativeUri(d.uri)); | 576 _serializeLibrary(resolveRelativeUri(d.uri)); |
| 589 }); | 577 }); |
| 590 } | 578 } |
| 591 } | 579 } |
| OLD | NEW |