dart-sdk/tests/corelib
James Lin 10e8d5d1a6 Try to clarify the RangeError.range message
The old RangeError.range message was confusing:

  RangeError (index): Invalid value: Not in range 0..2, inclusive: 9

The comma makes the message hard to parse.  I've seen a number of
people misinterpret "inclusive" as describing the invalid value (9)
instead of acting as a modifier on the range.

https://github.com/dart-lang/sdk/issues/29586 has a lot of
bikeshedding about this, but in the interest of mitigating confusion
sooner, I propose changing it to:

  RangeError (index): Invalid value: Not in inclusive range 0..2: 9

I'm intentionally trying to improve the message with minimal
disruption to the structure of the error message.  Although I'd much
prefer that "Invalid value" and the actual value be adjacent instead
of being interrupted by the explanation, such restructuring is rather
non-trivial.  RangeError allows the "Invalid value" message to be
customized, and rearranging terms could produce even worse
constructions.

I also considered:

  RangeError (index): Invalid value: Not in range [0, 2]: 9

And while I like that that is brief and clear, I chose not to use it
for people who are unfamiliar with interval notation and who might
mistake it as a Dart List.

Bug: https://github.com/dart-lang/sdk/issues/29586
Change-Id: I0f23b195437e4053ae5f76b5d303123979a8c9fe
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/146024
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
2020-05-27 14:59:39 +00:00
..
regexp Treat the expect and async_helper packages as opted in to NNBD. 2020-04-27 21:04:56 +00:00
weak_mode Fix incorrect instance checks. 2020-04-14 19:25:45 +00:00
analysis_options.yaml [tests] Add analysis options file to migrated test directories 2020-03-16 20:51:26 +00:00
apply2_test.dart Set up new test suites for migrating the tests to NNBD. 2019-11-19 00:18:43 +00:00
apply3_test.dart Set up new test suites for migrating the tests to NNBD. 2019-11-19 00:18:43 +00:00
apply4_test.dart Set up new test suites for migrating the tests to NNBD. 2019-11-19 00:18:43 +00:00
apply5_test.dart Set up new test suites for migrating the tests to NNBD. 2019-11-19 00:18:43 +00:00
apply_generic_function_test.dart [test] Fix various static errors in corelib tests 2020-04-16 09:20:21 +00:00
apply_test.dart [test] Fix various static errors in corelib tests 2020-04-16 09:20:21 +00:00
bigint_from_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
bigint_js_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
bigint_parse_radix_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
bigint_test.dart [corelib] Fix for BigInt.toDouble() crash 2020-05-09 00:22:16 +00:00
bit_twiddling_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
bool_from_environment2_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
bool_from_environment_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
bool_hashcode_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
bool_operator_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
cast_errors_test.dart [tests] Fix cast_test and migrate to nnbd. 2020-04-30 02:33:53 +00:00
cast_helper.dart [tests] Fix cast_test and migrate to nnbd. 2020-04-30 02:33:53 +00:00
cast_iterable_test.dart [tests] Fix cast_test and migrate to nnbd. 2020-04-30 02:33:53 +00:00
cast_list_test.dart [tests] Fix cast_test and migrate to nnbd. 2020-04-30 02:33:53 +00:00
cast_map_test.dart [tests] Fix cast_test and migrate to nnbd. 2020-04-30 02:33:53 +00:00
cast_set_test.dart [tests] Fix cast_test and migrate to nnbd. 2020-04-30 02:33:53 +00:00
cast_strong_test.dart Change types to <C?, D> in cast test for nnbd 2020-05-01 17:02:23 +00:00
cast_weak_test.dart Change types to <C?, D> in cast test for nnbd 2020-05-01 17:02:23 +00:00
collection_from_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
collection_length_test.dart [test] Remove use of List constructor in corelib tests 2020-04-17 08:45:46 +00:00
collection_of_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
collection_removes_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
collection_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
collection_to_string_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
compare_to2_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
compare_to_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
const_list_literal_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
const_list_remove_range_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
const_list_set_range_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
core_runtime_types_static_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
core_runtime_types_test.dart Make all CastErrors be TypeErrors. 2020-03-11 23:31:06 +00:00
corelib.status [test] Fix various static errors in corelib tests 2020-04-16 09:20:21 +00:00
data_uri_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time2_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time3_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time4_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time5_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time6_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time7_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time8_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time9_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time10_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time11_test.dart [tests] Cleaning up migrated corelib tests. 2020-03-24 17:34:25 +00:00
date_time_extremes_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time_far_away_dates_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time_parse_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
date_time_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_ceil2_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_ceil_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_ceil_to_double_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_compare_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_floor2_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_floor_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_floor_to_double_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_hash_code_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_parse_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_round2_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_round3_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_round4_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_round_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_round_to_double2_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_round_to_double3_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_round_to_double_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_truncate2_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_truncate_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_truncate_to_double_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
double_try_parse_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
duration_big_num_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
duration_double_multiplication_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
duration_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
dynamic_nosuchmethod_test.dart Migrate corelib/ tests starting with b-d to NNBD. 2019-12-02 23:13:10 +00:00
error_stack_trace1_test.dart Make tests not assume catch(e) gives e type dynamic. 2020-05-05 09:57:23 +00:00
error_stack_trace2_test.dart [tests] adjust error_stack_trace2_test to work also for DDC. 2020-04-02 18:25:29 +00:00
error_stack_trace_test.dart Make tests not assume catch(e) gives e type dynamic. 2020-05-05 09:57:23 +00:00
errors_test.dart Try to clarify the RangeError.range message 2020-05-27 14:59:39 +00:00
exception_implementation_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
expando_test.dart [tests] Removing more List constructor usage in corelib tests. 2020-04-06 19:17:54 +00:00
expression_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
for_in_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
format_exception_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
from_environment_const_type_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
from_environment_const_type_undefined_test.dart Change tests to expect new behavior of fromEnvironment 2020-03-17 13:43:17 +00:00
from_environment_default_value_test.dart Added new tests. 2020-03-27 19:02:52 +00:00
growable_list_test.dart [tests] Remove more deprecated List constructor usage in tests 2020-04-07 20:09:26 +00:00
has_next_iterator_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
hash_map2_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
hash_map_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
hash_set_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
hash_set_type_check_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
hashcode_boxed_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
hashcode_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
hidden_library2_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_ceil_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_ceil_to_double_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_floor_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_floor_to_double_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_from_environment2_test.dart Change tests to expect new behavior of fromEnvironment 2020-03-17 13:43:17 +00:00
int_from_environment_int64_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_from_environment_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_modpow_hard_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_modulo_arith_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_parse_radix_bad_handler_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_parse_radix_int64_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_parse_radix_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_parse_with_limited_ints_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_round_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_round_to_double_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_to_int_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_truncate_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_truncate_to_double_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_try_parse_int64_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
int_try_parse_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
integer_arith_vm_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
integer_parsed_arith_vm_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
integer_parsed_div_rem_vm_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
integer_parsed_mul_div_vm_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
integer_to_radix_string_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
integer_to_string_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
invocation_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
is_operator_basic_types_test.dart [tests] Update test expectations 2020-01-03 17:32:29 +00:00
iterable_contains2_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_contains_test.dart [tests] Removing more List constructor usage in corelib tests. 2020-04-06 19:17:54 +00:00
iterable_element_at_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_empty_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_expand_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_first_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_first_where_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_fold_test.dart [tests] Removing more List constructor usage in corelib tests. 2020-04-06 19:17:54 +00:00
iterable_followed_by_test.dart [tests] Cleaning up migrated corelib tests. 2020-03-24 17:34:25 +00:00
iterable_generate_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_join_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_last_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_last_where_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_length_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_mapping_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_reduce_test.dart [tests] Removing more List constructor usage in corelib tests. 2020-04-06 19:17:54 +00:00
iterable_return_type_helper.dart [tests] Clean up List constructor usage and unused multi-test 2020-04-01 00:03:46 +00:00
iterable_return_type_int64_test.dart [tests] Clean up List constructor usage and unused multi-test 2020-04-01 00:03:46 +00:00
iterable_return_type_test.dart [tests] Clean up List constructor usage and unused multi-test 2020-04-01 00:03:46 +00:00
iterable_single_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_single_where_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_skip_test.dart Cleaning up corelib test migrations. 2020-02-03 19:06:17 +00:00
iterable_skip_while_test.dart Cleaning up corelib test migrations. 2020-02-03 19:06:17 +00:00
iterable_take_test.dart Cleaning up corelib test migrations. 2020-02-03 19:06:17 +00:00
iterable_take_while_test.dart Cleaning up corelib test migrations. 2020-02-03 19:06:17 +00:00
iterable_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_to_list_test.dart [tests] Cleaning up migrated corelib tests. 2020-03-24 17:34:25 +00:00
iterable_to_set_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_tostring_test.dart Migrate the corelib_2/ tests starting with "e" through "i". 2019-12-02 23:19:10 +00:00
iterable_where_type_test.dart Cleaning up NNBD tests and migrations. 2020-01-09 17:11:46 +00:00
json_map_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
linked_hash_map_from_iterable_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
linked_hash_map_from_iterables_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
linked_hash_map_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_as_map_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_concurrent_modify_test.dart [nnbd] Fix some corelib/list strong mode tests 2020-04-17 19:29:24 +00:00
list_contains_argument_order_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_copy_range_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_fill_range_test.dart Cleaning up NNBD tests and migrations. 2020-01-09 17:11:46 +00:00
list_filled_type_argument_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_first_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_fixed_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_for_each_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_get_range_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_growable_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_index_of_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_insert_all_test.dart [nnbd/test] Fix some strong mode tests. 2020-03-31 18:14:45 +00:00
list_insert_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_iterators_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_last_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_literal_is_growable_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_literal_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_map_test.dart [cfe] Update greatest closure of ? to Object? 2020-05-04 08:14:43 +00:00
list_remove_range_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_removeat_test.dart [test] Remove use of List constructor in corelib tests 2020-04-17 08:45:46 +00:00
list_replace_range_test.dart [nnbd/test] Fix some strong mode tests. 2020-03-31 18:14:45 +00:00
list_reversed_test.dart [cfe] Update greatest closure of ? to Object? 2020-05-04 08:14:43 +00:00
list_set_all_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_set_range_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_sort_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_sublist_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_test.dart Update corelib/list_test for default exception type change. 2020-05-05 22:25:27 +00:00
list_to_string2_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
list_to_string_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_unmodifiable_cast_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
list_unmodifiable_test.dart Cleaning up NNBD tests and migrations. 2020-01-09 17:11:46 +00:00
list_write_elements_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
main_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_contains_key_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_contains_value_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_entry_test.dart Convert from _JsonMap to Map<String, Object> in corelib/map_entry_test 2020-03-20 17:58:22 +00:00
map_from_entries_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_from_iterable_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_from_iterables_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_from_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_index_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_keys2_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_keys_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_of_test.dart Make all CastErrors be TypeErrors. 2020-03-11 23:31:06 +00:00
map_remove_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_set_undefined_test.dart [cfe] Report error on missing return from non-nullable function 2020-03-24 08:21:36 +00:00
map_test.dart [test] Fix various static errors in corelib tests 2020-04-16 09:20:21 +00:00
map_to_string_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_unmodifiable_cast_test.dart [tests] Cleaning up migrated corelib tests. 2020-03-24 17:34:25 +00:00
map_update_test.dart Cleaning up NNBD tests and migrations. 2020-01-09 17:11:46 +00:00
map_values2_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_values3_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_values4_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
map_values_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
nan_infinity_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
nsm_invocation_generic_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
nsm_invocation_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
null_nosuchmethod_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
null_test.dart Cleaning up NNBD tests and migrations. 2020-01-09 17:11:46 +00:00
num_clamp_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
num_parse_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
num_sign_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
num_try_parse_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
queue_first_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
queue_iterator_test.dart [cfe] Report error on missing return from non-nullable function 2020-03-24 08:21:36 +00:00
queue_last_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
queue_single_test.dart Migrate corelib tests starting with "j" to "q" to NNBD. 2019-12-10 01:17:24 +00:00
queue_test.dart [test] Fix various static errors in corelib tests 2020-04-16 09:20:21 +00:00
range_error_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
reg_exp1_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
reg_exp5_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
reg_exp_all_matches_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
reg_exp_cache_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
reg_exp_first_match_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
reg_exp_group_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
reg_exp_groups_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
reg_exp_has_match_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
reg_exp_pattern_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
reg_exp_start_end_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
reg_exp_string_match_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
regress_11099_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
regress_33166_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
regress_r21715_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
safe_to_string_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
set_contains_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
set_containsAll_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
set_intersection_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
set_iterator_test.dart [cfe] Report error on missing return from non-nullable function 2020-03-24 08:21:36 +00:00
set_remove_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
set_removeAll_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
set_retainAll_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
set_test.dart [tests] Remove more deprecated List constructor usage in tests 2020-04-07 20:09:26 +00:00
set_to_string_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
shuffle_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
sort_helper.dart [tests] Removing more List constructor usage in corelib tests. 2020-04-06 19:17:54 +00:00
sort_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
splay_tree_from_iterable_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
splay_tree_from_iterables_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
splay_tree_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
stacktrace_current_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
stacktrace_fromstring_test.dart [cfe] Handle throw in return type inference 2020-03-27 15:59:27 +00:00
stopwatch2_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
stopwatch_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_base_vm_static_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_base_vm_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
string_buffer_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_case_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_codeunits_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_from_environment2_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_from_environment3_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_from_environment_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_from_list_test.dart [tests] Removing List constructor usage in corelib tests. 2020-03-30 19:58:08 +00:00
string_fromcharcode_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_fromcharcodes_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_operations_with_null_test.dart [vm/nnbd] Fix CompileType::IsAssignableTo for nullable types in strong mode 2020-03-25 17:32:02 +00:00
string_pattern_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_replace_all_2_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_replace_all_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_replace_dollar_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_replace_static_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_replace_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_runes_test.dart Updating iterator expected values from null to -1. 2020-01-18 02:55:28 +00:00
string_source_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_split_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_static_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_substring_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_to_lower_case_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_trim2_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_trim_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
string_trimlr_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
strings_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
symbol_map_helper.dart [test] Fix various static errors in corelib tests 2020-04-16 09:20:21 +00:00
symbol_operator_test.dart [test] Fix various static errors in corelib tests 2020-04-16 09:20:21 +00:00
symbol_reserved_word_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
symbol_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
throw_half_surrogate_pair_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
toInt_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
type_hashcode_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
type_tostring_test.dart [VM/nnbd] Implement pre-nnbd language changes (see lang/#807). 2020-02-26 21:32:51 +00:00
typed_data_with_limited_ints_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
unicode2_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
unicode_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
unsigned_shift_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_base_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_file_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_http_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_ipv4_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_ipv6_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_normalize_path_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_normalize_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_parameters_all_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_parse_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_path_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_query_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_scheme_test.dart Migrate remaining corelib_2/ tests to NNBD. 2019-12-17 23:06:24 +00:00
uri_test.dart Treat the expect and async_helper packages as opted in to NNBD. 2020-04-27 21:04:56 +00:00