 Chromium Code Reviews
 Chromium Code Reviews Issue 1924413002:
  Fix modulo and bitwise operators.  (Closed) 
  Base URL: https://github.com/dart-lang/dev_compiler@master
    
  
    Issue 1924413002:
  Fix modulo and bitwise operators.  (Closed) 
  Base URL: https://github.com/dart-lang/dev_compiler@master| OLD | NEW | 
|---|---|
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 (function() { | 5 (function() { | 
| 6 'use strict'; | 6 'use strict'; | 
| 7 | 7 | 
| 8 let dart_sdk = dart_library.import('dart_sdk'); | 8 let dart_sdk = dart_library.import('dart_sdk'); | 
| 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); | 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); | 
| 10 let async_helper = dart_library.import('async_helper').async_helper; | 10 let async_helper = dart_library.import('async_helper').async_helper; | 
| 11 | 11 | 
| 12 // TODO(jmesserly): separate StrongModeError from other errors. | 12 // TODO(jmesserly): separate StrongModeError from other errors. | 
| 13 let status = { | 13 let status = { | 
| 14 expectedFailures: new Set([ | 14 expectedFailures: new Set([ | 
| 15 'arithmetic2_test', | 15 'arithmetic2_test', | 
| 16 'assert_with_type_test_or_cast_test', | 16 'assert_with_type_test_or_cast_test', | 
| 17 'assertion_test', | 17 'assertion_test', | 
| 18 'async_star_await_pauses_test', | 18 'async_star_await_pauses_test', | 
| 19 'async_star_cancel_while_paused_test', | 19 'async_star_cancel_while_paused_test', | 
| 20 'async_star_regression_fisk_test', | 20 'async_star_regression_fisk_test', | 
| 21 'async_switch_test', | 21 'async_switch_test', | 
| 22 'asyncstar_throw_in_catch_test', | 22 'asyncstar_throw_in_catch_test', | 
| 23 'await_future_test', | 23 'await_future_test', | 
| 24 'bit_operations_test_none_multi', | 24 'bit_operations_test_none_multi', | 
| 25 'bit_shift_test', | 25 'bit_shift_test', | 
| 26 'bool_test', | 26 'bool_test', | 
| 27 'bound_closure_equality_test', | 27 'bound_closure_equality_test', | 
| 28 'branch_canonicalization_test', // JS bit operations truncate to 32 bits. | |
| 
sra1
2016/04/28 19:56:37
This is suppressed in language_dart2js.status
 | |
| 28 'call_closurization_test', | 29 'call_closurization_test', | 
| 29 'call_function_apply_test', | 30 'call_function_apply_test', | 
| 30 'call_operator_test', | 31 'call_operator_test', | 
| 31 'call_property_test', | 32 'call_property_test', | 
| 32 'call_test', | 33 'call_test', | 
| 33 'call_this_test', | 34 'call_this_test', | 
| 34 'call_through_null_getter_test', | 35 'call_through_null_getter_test', | 
| 35 'call_with_no_such_method_test', | 36 'call_with_no_such_method_test', | 
| 36 'canonical_const2_test', | 37 'canonical_const2_test', | 
| 37 'canonical_const_test', | 38 'canonical_const_test', | 
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 405 } | 406 } | 
| 406 | 407 | 
| 407 (dart_library.import('async_await_test_none_multi') | 408 (dart_library.import('async_await_test_none_multi') | 
| 408 .async_await_test_none_multi.main()); | 409 .async_await_test_none_multi.main()); | 
| 409 // TODO(vsm): Re-enable. | 410 // TODO(vsm): Re-enable. | 
| 410 // See https://github.com/dart-lang/dev_compiler/issues/456 | 411 // See https://github.com/dart-lang/dev_compiler/issues/456 | 
| 411 // (dart_library.import('async_star_test_none_multi') | 412 // (dart_library.import('async_star_test_none_multi') | 
| 412 // .async_star_test_none_multi.main()); | 413 // .async_star_test_none_multi.main()); | 
| 413 | 414 | 
| 414 })(); | 415 })(); | 
| OLD | NEW |