| 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('dart:uri'); | 5 #import('dart:uri'); |
| 6 #import('parser_helper.dart'); | 6 #import('parser_helper.dart'); |
| 7 #import("../../../lib/compiler/compiler.dart"); | 7 #import("../../../lib/compiler/compiler.dart"); |
| 8 #import("../../../lib/compiler/implementation/tree/tree.dart"); | 8 #import("../../../lib/compiler/implementation/tree/tree.dart"); |
| 9 | 9 |
| 10 testUnparse(String statement) { | 10 testUnparse(String statement) { |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 testClassWithSynthesizedConstructor(); | 422 testClassWithSynthesizedConstructor(); |
| 423 testClassWithMethod(); | 423 testClassWithMethod(); |
| 424 testVariableDefinitions(); | 424 testVariableDefinitions(); |
| 425 testGetSet(); | 425 testGetSet(); |
| 426 testFactoryConstructor(); | 426 testFactoryConstructor(); |
| 427 testTopLevelField(); | 427 testTopLevelField(); |
| 428 testAbstractClass(); | 428 testAbstractClass(); |
| 429 testConflictLibraryClassRename(); | 429 testConflictLibraryClassRename(); |
| 430 testNoConflictSendsRename(); | 430 testNoConflictSendsRename(); |
| 431 testConflictSendsRename(); | 431 testConflictSendsRename(); |
| 432 testDefaultClassWithArgs(); | 432 // Disabled with revert of https://chromiumcodereview.appspot.com/10824062/ |
| 433 // testDefaultClassWithArgs(); |
| 433 testClassExtendsWithArgs(); | 434 testClassExtendsWithArgs(); |
| 434 } | 435 } |
| OLD | NEW |