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

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

Issue 2747803004: Parse assert 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
« no previous file with comments | « no previous file | pkg/compiler/lib/src/parser/node_listener.dart » ('j') | 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) 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 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 } 1075 }
1076 1076
1077 /** 1077 /**
1078 * Tests of the fasta parser based on [StatementParserTestMixin]. 1078 * Tests of the fasta parser based on [StatementParserTestMixin].
1079 */ 1079 */
1080 @reflectiveTest 1080 @reflectiveTest
1081 class StatementParserTest_Fasta extends FastaParserTestCase 1081 class StatementParserTest_Fasta extends FastaParserTestCase
1082 with StatementParserTestMixin { 1082 with StatementParserTestMixin {
1083 @override 1083 @override
1084 @failingTest 1084 @failingTest
1085 void test_parseAssertStatement() {
1086 super.test_parseAssertStatement();
1087 }
1088
1089 @override
1090 @failingTest
1091 void test_parseAssertStatement_messageLowPrecedence() {
1092 super.test_parseAssertStatement_messageLowPrecedence();
1093 }
1094
1095 @override
1096 @failingTest
1097 void test_parseAssertStatement_messageString() {
1098 super.test_parseAssertStatement_messageString();
1099 }
1100
1101 @override
1102 @failingTest
1103 void test_parseBreakStatement_label() { 1085 void test_parseBreakStatement_label() {
1104 super.test_parseBreakStatement_label(); 1086 super.test_parseBreakStatement_label();
1105 } 1087 }
1106 1088
1107 @override 1089 @override
1108 @failingTest 1090 @failingTest
1109 void test_parseBreakStatement_noLabel() { 1091 void test_parseBreakStatement_noLabel() {
1110 super.test_parseBreakStatement_noLabel(); 1092 super.test_parseBreakStatement_noLabel();
1111 } 1093 }
1112 1094
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
1399 } 1381 }
1400 1382
1401 @override 1383 @override
1402 @failingTest 1384 @failingTest
1403 void test_parsePartOfDirective_uri() { 1385 void test_parsePartOfDirective_uri() {
1404 // TODO(paulberry,ahe): URIs in "part of" declarations are not supported by 1386 // TODO(paulberry,ahe): URIs in "part of" declarations are not supported by
1405 // Fasta. 1387 // Fasta.
1406 super.test_parsePartOfDirective_uri(); 1388 super.test_parsePartOfDirective_uri();
1407 } 1389 }
1408 } 1390 }
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/parser/node_listener.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698