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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 ? uriContent | 379 ? uriContent |
380 : null; | 380 : null; |
381 } | 381 } |
382 | 382 |
383 final _crashingTests = new Set<String>.from([ | 383 final _crashingTests = new Set<String>.from([ |
384 'language/generic_methods_generic_class_tearoff_test', | 384 'language/generic_methods_generic_class_tearoff_test', |
385 'language/generic_methods_named_parameters_test', | 385 'language/generic_methods_named_parameters_test', |
386 'language/generic_methods_optional_parameters_test', | 386 'language/generic_methods_optional_parameters_test', |
387 'language/generic_methods_tearoff_specialization_test', | 387 'language/generic_methods_tearoff_specialization_test', |
388 'language/generic_methods_unused_parameter_test', | 388 'language/generic_methods_unused_parameter_test', |
389 'language/mixin_illegal_syntax_test_none_multi', | |
390 'language/mixin_illegal_syntax_test_01_multi', | |
391 'language/mixin_illegal_syntax_test_02_multi', | |
392 'language/mixin_illegal_syntax_test_03_multi', | |
393 'language/mixin_illegal_syntax_test_04_multi', | |
394 'language/mixin_illegal_syntax_test_05_multi', | |
395 'language/mixin_illegal_syntax_test_06_multi', | |
396 'language/mixin_illegal_syntax_test_07_multi', | |
397 'language/mixin_illegal_syntax_test_08_multi', | |
398 'language/mixin_illegal_syntax_test_09_multi', | |
399 'language/mixin_illegal_syntax_test_10_multi', | |
400 'language/mixin_illegal_syntax_test_11_multi', | |
401 'language/mixin_illegal_syntax_test_12_multi', | |
402 'language/mixin_illegal_syntax_test_13_multi', | |
403 'language/mixin_illegal_syntax_test_14_multi', | |
404 | 389 |
405 // TODO(vsm): Fix these - they import files from a different directory | 390 // TODO(vsm): Fix these - they import files from a different directory |
406 // - this triggers an invalid library root build error. | 391 // - this triggers an invalid library root build error. |
407 'lib/html/custom/attribute_changed_callback_test', | 392 'lib/html/custom/attribute_changed_callback_test', |
408 'lib/html/custom/constructor_calls_created_synchronously_test', | 393 'lib/html/custom/constructor_calls_created_synchronously_test', |
409 'lib/html/custom/entered_left_view_test', | 394 'lib/html/custom/entered_left_view_test', |
410 'lib/html/custom/js_custom_test', | 395 'lib/html/custom/js_custom_test', |
411 'lib/html/custom/mirrors_test', | 396 'lib/html/custom/mirrors_test', |
412 'lib/html/custom/regress_194523002_test', | 397 'lib/html/custom/regress_194523002_test', |
413 ]); | 398 ]); |
OLD | NEW |