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

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

Issue 1843013002: Mark a test in summarize_ast_test.dart as newly passing. (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 | « no previous file | 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.summarize_ast_test; 5 library analyzer.test.src.summary.summarize_ast_test;
6 6
7 import 'package:analyzer/analyzer.dart'; 7 import 'package:analyzer/analyzer.dart';
8 import 'package:analyzer/dart/ast/ast.dart'; 8 import 'package:analyzer/dart/ast/ast.dart';
9 import 'package:analyzer/dart/ast/token.dart'; 9 import 'package:analyzer/dart/ast/token.dart';
10 import 'package:analyzer/src/dart/scanner/reader.dart'; 10 import 'package:analyzer/src/dart/scanner/reader.dart';
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 test_closure_executable_with_return_type_from_closure() { 131 test_closure_executable_with_return_type_from_closure() {
132 // TODO(paulberry): fix. 132 // TODO(paulberry): fix.
133 } 133 }
134 134
135 @override 135 @override
136 test_closure_executable_with_unimported_return_type() { 136 test_closure_executable_with_unimported_return_type() {
137 // TODO(paulberry): fix. 137 // TODO(paulberry): fix.
138 } 138 }
139 139
140 @override 140 @override
141 test_constExpr_classMember_shadows_typeParam() {
142 // TODO(paulberry): fix.
143 }
144
145 @override
146 test_field_propagated_type_final_immediate() { 141 test_field_propagated_type_final_immediate() {
147 // TODO(paulberry): fix. 142 // TODO(paulberry): fix.
148 } 143 }
149 144
150 @override 145 @override
151 test_fully_linked_references_follow_other_references() { 146 test_fully_linked_references_follow_other_references() {
152 // TODO(paulberry): fix. 147 // TODO(paulberry): fix.
153 } 148 }
154 149
155 @override 150 @override
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 CompilationUnit _parseText(String text) { 230 CompilationUnit _parseText(String text) {
236 CharSequenceReader reader = new CharSequenceReader(text); 231 CharSequenceReader reader = new CharSequenceReader(text);
237 Scanner scanner = 232 Scanner scanner =
238 new Scanner(null, reader, AnalysisErrorListener.NULL_LISTENER); 233 new Scanner(null, reader, AnalysisErrorListener.NULL_LISTENER);
239 Token token = scanner.tokenize(); 234 Token token = scanner.tokenize();
240 Parser parser = new Parser(null, AnalysisErrorListener.NULL_LISTENER); 235 Parser parser = new Parser(null, AnalysisErrorListener.NULL_LISTENER);
241 parser.parseGenericMethods = true; 236 parser.parseGenericMethods = true;
242 return parser.parseCompilationUnit(token); 237 return parser.parseCompilationUnit(token);
243 } 238 }
244 } 239 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698