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

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

Issue 2987983004: Issue 30034. Parse annotations for typedef(s) and resynthesize from Kernel in analyzer. (Closed)
Patch Set: Created 3 years, 4 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
OLDNEW
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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_kernel_test; 5 library analyzer.test.src.summary.resynthesize_kernel_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:analyzer/file_system/file_system.dart'; 9 import 'package:analyzer/file_system/file_system.dart';
10 import 'package:analyzer/file_system/memory_file_system.dart'; 10 import 'package:analyzer/file_system/memory_file_system.dart';
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 test_metadata_fieldFormalParameter() async { 742 test_metadata_fieldFormalParameter() async {
743 await super.test_metadata_fieldFormalParameter(); 743 await super.test_metadata_fieldFormalParameter();
744 } 744 }
745 745
746 @failingTest 746 @failingTest
747 test_metadata_fieldFormalParameter_withDefault() async { 747 test_metadata_fieldFormalParameter_withDefault() async {
748 await super.test_metadata_fieldFormalParameter_withDefault(); 748 await super.test_metadata_fieldFormalParameter_withDefault();
749 } 749 }
750 750
751 @failingTest 751 @failingTest
752 test_metadata_functionTypeAlias() async {
753 await super.test_metadata_functionTypeAlias();
754 }
755
756 @failingTest
757 test_metadata_functionTypedFormalParameter() async { 752 test_metadata_functionTypedFormalParameter() async {
758 await super.test_metadata_functionTypedFormalParameter(); 753 await super.test_metadata_functionTypedFormalParameter();
759 } 754 }
760 755
761 @failingTest 756 @failingTest
762 test_metadata_functionTypedFormalParameter_withDefault() async { 757 test_metadata_functionTypedFormalParameter_withDefault() async {
763 await super.test_metadata_functionTypedFormalParameter_withDefault(); 758 await super.test_metadata_functionTypedFormalParameter_withDefault();
764 } 759 }
765 760
766 @failingTest 761 @failingTest
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1174 @override 1169 @override
1175 Future<List<int>> readAsBytes() async { 1170 Future<List<int>> readAsBytes() async {
1176 return file.readAsBytesSync(); 1171 return file.readAsBytesSync();
1177 } 1172 }
1178 1173
1179 @override 1174 @override
1180 Future<String> readAsString() async { 1175 Future<String> readAsString() async {
1181 return file.readAsStringSync(); 1176 return file.readAsStringSync();
1182 } 1177 }
1183 } 1178 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698