Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: pkg/analyzer/test/src/summary/resynthesize_ast_test.dart

Issue 1897513002: Fill out the implementation of synthetic getters/setters in the summary linker. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/analyzer/test/src/summary/linker_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/src/summary/linker_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698