OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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:expect/expect.dart"; |
5 import 'dart:uri'; | 6 import 'dart:uri'; |
6 import 'parser_helper.dart'; | 7 import 'parser_helper.dart'; |
7 import 'mock_compiler.dart'; | 8 import 'mock_compiler.dart'; |
8 import '../../../sdk/lib/_internal/compiler/implementation/tree/tree.dart'; | 9 import '../../../sdk/lib/_internal/compiler/implementation/tree/tree.dart'; |
9 | 10 |
10 testUnparse(String statement) { | 11 testUnparse(String statement) { |
11 Node node = parseStatement(statement); | 12 Node node = parseStatement(statement); |
12 Expect.equals(statement, unparse(node)); | 13 Expect.equals(statement, unparse(node)); |
13 } | 14 } |
14 | 15 |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 testImport(); | 357 testImport(); |
357 testExport(); | 358 testExport(); |
358 testPart(); | 359 testPart(); |
359 testPartOf(); | 360 testPartOf(); |
360 testCombinators(); | 361 testCombinators(); |
361 testRedirectingFactoryConstructors(); | 362 testRedirectingFactoryConstructors(); |
362 testClassDeclarations(); | 363 testClassDeclarations(); |
363 testMixinApplications(); | 364 testMixinApplications(); |
364 testParameters(); | 365 testParameters(); |
365 } | 366 } |
OLD | NEW |