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

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

Issue 257773008: New analyzer snapshot, based on r35422. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update pubspec.yaml Created 6 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 | Annotate | Revision Log
OLDNEW
1 library engine.test; 1 library engine.test;
scheglov 2014/04/25 14:22:11 Remove this file. It is for our convenience to run
2 2
3 import "scanner_test.dart" as t_scanner; 3 import "scanner_test.dart" as t_scanner;
4 import "parser_test.dart" as t_parser; 4 import "parser_test.dart" as t_parser;
5 import "ast_test.dart" as t_ast; 5 import "ast_test.dart" as t_ast;
6 import "element_test.dart" as t_element; 6 import "element_test.dart" as t_element;
7 import "resolver_test.dart" as t_resolver; 7 import "resolver_test.dart" as t_resolver;
8 8
9 main() { 9 main() {
10 t_scanner.main(); 10 t_scanner.main();
11 t_parser.main(); 11 t_parser.main();
12 t_ast.main(); 12 t_ast.main();
13 t_element.main(); 13 t_element.main();
14 t_resolver.main(); 14 t_resolver.main();
15 } 15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698