| 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 main() { | 401 main() { |
| 402 testSignedConstants(); | 402 testSignedConstants(); |
| 403 testGenericTypes(); | 403 testGenericTypes(); |
| 404 testForLoop(); | 404 testForLoop(); |
| 405 testEmptyList(); | 405 testEmptyList(); |
| 406 testClosure(); | 406 testClosure(); |
| 407 testIndexedOperatorDecl(); | 407 testIndexedOperatorDecl(); |
| 408 testNativeMethods(); | 408 testNativeMethods(); |
| 409 testPrefixIncrements(); | 409 testPrefixIncrements(); |
| 410 testConstModifier(); | 410 testConstModifier(); |
| 411 testStaticInvocation(); | |
| 412 testSimpleFileUnparse(); | 411 testSimpleFileUnparse(); |
| 412 testTopLevelField(); |
| 413 testSimpleObjectInstantiation(); | 413 testSimpleObjectInstantiation(); |
| 414 testSimpleTopLevelClass(); | 414 testSimpleTopLevelClass(); |
| 415 testClassWithSynthesizedConstructor(); | 415 testClassWithSynthesizedConstructor(); |
| 416 testClassWithMethod(); | 416 testClassWithMethod(); |
| 417 testExtendsImplements(); |
| 417 testVariableDefinitions(); | 418 testVariableDefinitions(); |
| 418 testGetSet(); | 419 testGetSet(); |
| 419 testFactoryConstructor(); | 420 testFactoryConstructor(); |
| 420 testTopLevelField(); | |
| 421 testAbstractClass(); | 421 testAbstractClass(); |
| 422 testConflictSendsRename(); |
| 423 testNoConflictSendsRename(); |
| 422 testConflictLibraryClassRename(); | 424 testConflictLibraryClassRename(); |
| 423 testNoConflictSendsRename(); | 425 testDefaultClassWithArgs(); |
| 424 testConflictSendsRename(); | |
| 425 // Disabled with revert of https://chromiumcodereview.appspot.com/10824062/ | |
| 426 // testDefaultClassWithArgs(); | |
| 427 if (false) // Temporary resolved, fix is near. | |
| 428 testClassExtendsWithArgs(); | 426 testClassExtendsWithArgs(); |
| 427 testStaticInvocation(); |
| 429 } | 428 } |
| OLD | NEW |