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

Side by Side Diff: pkg/analyzer/test/generated/parser_fasta_test.dart

Issue 2752543005: Parse try-catch statements with Fasta. (Closed)
Patch Set: Created 3 years, 9 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 import 'package:analyzer/dart/ast/ast.dart'; 5 import 'package:analyzer/dart/ast/ast.dart';
6 import 'package:analyzer/dart/ast/token.dart' as analyzer; 6 import 'package:analyzer/dart/ast/token.dart' as analyzer;
7 import 'package:analyzer/dart/element/element.dart'; 7 import 'package:analyzer/dart/element/element.dart';
8 import 'package:analyzer/error/error.dart'; 8 import 'package:analyzer/error/error.dart';
9 import 'package:analyzer/src/generated/parser.dart' as analyzer; 9 import 'package:analyzer/src/generated/parser.dart' as analyzer;
10 import 'package:analyzer/src/generated/utilities_dart.dart'; 10 import 'package:analyzer/src/generated/utilities_dart.dart';
(...skipping 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after
1287 } 1287 }
1288 1288
1289 @override 1289 @override
1290 @failingTest 1290 @failingTest
1291 void test_parseSwitchStatement_labeledStatementInCase() { 1291 void test_parseSwitchStatement_labeledStatementInCase() {
1292 super.test_parseSwitchStatement_labeledStatementInCase(); 1292 super.test_parseSwitchStatement_labeledStatementInCase();
1293 } 1293 }
1294 1294
1295 @override 1295 @override
1296 @failingTest 1296 @failingTest
1297 void test_parseTryStatement_catch() {
1298 super.test_parseTryStatement_catch();
1299 }
1300
1301 @override
1302 @failingTest
1303 void test_parseTryStatement_catch_finally() { 1297 void test_parseTryStatement_catch_finally() {
1304 super.test_parseTryStatement_catch_finally(); 1298 super.test_parseTryStatement_catch_finally();
1305 } 1299 }
1306 1300
1307 @override 1301 @override
1308 @failingTest 1302 @failingTest
1309 void test_parseTryStatement_finally() {
1310 super.test_parseTryStatement_finally();
1311 }
1312
1313 @override
1314 @failingTest
1315 void test_parseTryStatement_multiple() {
1316 super.test_parseTryStatement_multiple();
1317 }
1318
1319 @override
1320 @failingTest
1321 void test_parseTryStatement_on() {
1322 super.test_parseTryStatement_on();
1323 }
1324
1325 @override
1326 @failingTest
1327 void test_parseTryStatement_on_catch() { 1303 void test_parseTryStatement_on_catch() {
1328 super.test_parseTryStatement_on_catch(); 1304 super.test_parseTryStatement_on_catch();
1329 } 1305 }
1330 1306
1331 @override 1307 @override
1332 @failingTest 1308 @failingTest
1333 void test_parseTryStatement_on_catch_finally() { 1309 void test_parseTryStatement_on_catch_finally() {
1334 super.test_parseTryStatement_on_catch_finally(); 1310 super.test_parseTryStatement_on_catch_finally();
1335 } 1311 }
1336 1312
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
1435 } 1411 }
1436 1412
1437 @override 1413 @override
1438 @failingTest 1414 @failingTest
1439 void test_parsePartOfDirective_uri() { 1415 void test_parsePartOfDirective_uri() {
1440 // TODO(paulberry,ahe): URIs in "part of" declarations are not supported by 1416 // TODO(paulberry,ahe): URIs in "part of" declarations are not supported by
1441 // Fasta. 1417 // Fasta.
1442 super.test_parsePartOfDirective_uri(); 1418 super.test_parsePartOfDirective_uri();
1443 } 1419 }
1444 } 1420 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698