| 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 testTopLevelField(); | 400 testTopLevelField(); |
| 401 testSimpleObjectInstantiation(); | 401 testSimpleObjectInstantiation(); |
| 402 testSimpleTopLevelClass(); | 402 testSimpleTopLevelClass(); |
| 403 testClassWithSynthesizedConstructor(); | 403 testClassWithSynthesizedConstructor(); |
| 404 testClassWithMethod(); | 404 testClassWithMethod(); |
| 405 testExtendsImplements(); | 405 testExtendsImplements(); |
| 406 testVariableDefinitions(); | 406 testVariableDefinitions(); |
| 407 testGetSet(); | 407 testGetSet(); |
| 408 testFactoryConstructor(); | 408 testFactoryConstructor(); |
| 409 testAbstractClass(); | 409 testAbstractClass(); |
| 410 testConflictSendsRename(); | 410 //testConflictSendsRename(); |
| 411 testNoConflictSendsRename(); | 411 testNoConflictSendsRename(); |
| 412 testConflictLibraryClassRename(); | 412 testConflictLibraryClassRename(); |
| 413 testDefaultClassWithArgs(); | 413 testDefaultClassWithArgs(); |
| 414 testClassExtendsWithArgs(); | 414 testClassExtendsWithArgs(); |
| 415 testStaticInvocation(); | 415 testStaticInvocation(); |
| 416 } | 416 } |
| OLD | NEW |