| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 /// Tests code generation. | 5 /// Tests code generation. |
| 6 /// | 6 /// |
| 7 /// Runs Dart Dev Compiler on all input in the `codegen` directory and checks | 7 /// Runs Dart Dev Compiler on all input in the `codegen` directory and checks |
| 8 /// that the output is what we expected. | 8 /// that the output is what we expected. |
| 9 library dev_compiler.test.codegen_test; | 9 library dev_compiler.test.codegen_test; |
| 10 | 10 |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 'language/mixin_illegal_syntax_test_09_multi', | 391 'language/mixin_illegal_syntax_test_09_multi', |
| 392 'language/mixin_illegal_syntax_test_10_multi', | 392 'language/mixin_illegal_syntax_test_10_multi', |
| 393 'language/mixin_illegal_syntax_test_11_multi', | 393 'language/mixin_illegal_syntax_test_11_multi', |
| 394 'language/mixin_illegal_syntax_test_12_multi', | 394 'language/mixin_illegal_syntax_test_12_multi', |
| 395 'language/mixin_illegal_syntax_test_13_multi', | 395 'language/mixin_illegal_syntax_test_13_multi', |
| 396 'language/mixin_illegal_syntax_test_14_multi', | 396 'language/mixin_illegal_syntax_test_14_multi', |
| 397 | 397 |
| 398 // TODO(vsm): Fix these - they import files from a different directory | 398 // TODO(vsm): Fix these - they import files from a different directory |
| 399 // - this triggers an invalid library root build error. | 399 // - this triggers an invalid library root build error. |
| 400 'lib/html/custom/attribute_changed_callback_test', | 400 'lib/html/custom/attribute_changed_callback_test', |
| 401 'lib/html/custom/constructor_calls_created_synchronously_test', |
| 401 'lib/html/custom/entered_left_view_test', | 402 'lib/html/custom/entered_left_view_test', |
| 402 'lib/html/custom/js_custom_test', | 403 'lib/html/custom/js_custom_test', |
| 403 'lib/html/custom/mirrors_test', | 404 'lib/html/custom/mirrors_test', |
| 404 'lib/html/custom/regress_194523002_test', | 405 'lib/html/custom/regress_194523002_test', |
| 405 ]); | 406 ]); |
| OLD | NEW |