Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Issue 111643015: Preliminary checked mirrors (not ready for review yet) (Closed)

Created:
7 years ago by Siggi Cherem (dart-lang)
Modified:
6 years ago
Reviewers:
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Preliminary checked mirrors (not ready for review yet) This is by no means complete, and I haven't even used it with polymer yet, but you can check out some of the tests (like logging_test.dart) and examples to see the idea. All tests under test/from_sdk/ are just making sure the package passes all of the original dart:mirrors tests. The only changes there are to import this package instead. The mechanism is simple, you import 'package:checked_mirrors/checked_mirrors.dart' instead of 'dart:mirrors', and we'll check things for you in Dartium. When deploying, we'll transform your code and replace the package-imports back with 'dart:imports', so this code goes away before dart2js compiles the app.

Patch Set 1 : #

Patch Set 2 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2291 lines, -75 lines) Patch
pkg/checked_mirrors/AUTHORS View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/LICENSE View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/PATENTS View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/example/meta_target.dart View 1 chunk +60 lines, -0 lines 0 comments Download
pkg/checked_mirrors/example/symbol.dart View 1 chunk +35 lines, -0 lines 0 comments Download
pkg/checked_mirrors/example/target.dart View 1 chunk +42 lines, -0 lines 0 comments Download
pkg/checked_mirrors/lib/checked_mirrors.dart View 1 chunk +443 lines, -0 lines 0 comments Download
pkg/checked_mirrors/lib/control.dart View 1 chunk +75 lines, -0 lines 0 comments Download
pkg/checked_mirrors/lib/src/checker.dart View 1 chunk +229 lines, -0 lines 0 comments Download
pkg/checked_mirrors/lib/src/utils.dart View 1 chunk +23 lines, -0 lines 0 comments Download
pkg/checked_mirrors/lib/src/wrappers.dart View 1 chunk +405 lines, -0 lines 0 comments Download
pkg/checked_mirrors/lib/transformer.dart View 1 chunk +69 lines, -0 lines 0 comments Download
pkg/checked_mirrors/pubspec.yaml View 1 chunk +13 lines, -0 lines 0 comments Download
pkg/checked_mirrors/test/checked_mirrors_test.dart View 1 chunk +196 lines, -0 lines 0 comments Download
pkg/checked_mirrors/test/copy_tests.sh View 1 chunk +31 lines, -0 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/abstract_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/array_tracing2_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/array_tracing3_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/array_tracing_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/basic_types_in_dart_core_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/circular_factory_redirection_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/class_declarations_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/class_mirror_type_variables_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/closure_mirror_import1.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/closure_mirror_import2.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/closures_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/constructor_kinds_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/constructor_private_name_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/constructors_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/declarations_model.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/delegate_call_through_getter_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/delegate_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/disable_tree_shaking_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/equality_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/fake_function_with_call_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/fake_function_without_call_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/field_type_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/find_in_context_fake_function_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/find_in_context_private_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/find_in_context_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/function_type_mirror_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_bounded_by_type_parameter_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_bounded_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_class_declaration_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_f_bounded_mixin_application_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_f_bounded_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_function_typedef_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_interface_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_list_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_local_function_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_mixin_applications_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_mixin_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_superclass_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generic_type_mirror_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/generics_double_substitution_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generics_dynamic_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generics_helper.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/generics_special_types_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generics_substitution_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/generics_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/get_symbol_name_no_such_method_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/get_symbol_name_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/hierarchy_invariants_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/hierarchy_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/immutable_collections_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/inference_and_no_such_method_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/inherit_field_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/initializing_formals_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/instance_members_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/instance_members_unimplemented_interface_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/instance_members_with_override_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/instantiate_abstract_class_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/intercepted_cache_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/intercepted_class_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/intercepted_object_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/intercepted_superclass_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/invoke_call_through_getter_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/invoke_closurization_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/invoke_import_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/invoke_named_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/invoke_private_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/invoke_private_wrong_library_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/invoke_subscript_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/invoke_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/invoke_throws_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/is_odd_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/lazy_static_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/libraries_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/library_declarations_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/library_metadata2_lib1.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/library_metadata2_lib2.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/library_metadata2_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/library_metadata_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/library_metatarget_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/library_metatarget_test_annotations_lib.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/library_metatarget_test_lib.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/library_uri_io_test.dart View 1 chunk +2 lines, -2 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/library_uri_package_test.dart View 1 chunk +2 lines, -2 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/list_constructor_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/local_isolate_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/metadata_allowed_values_import.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/metadata_allowed_values_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/metadata_constructed_constant_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/metadata_constructor_arguments_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/metadata_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/method_mirror_name_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/method_mirror_properties_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/method_mirror_returntype_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/method_mirror_source_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/mirrors_resolve_fields_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/mirrors_test.dart View 1 chunk +2 lines, -2 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/mirrors_used_get_name2_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/mirrors_used_get_name_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/mixin_application_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/mixin_members_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/mixin_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/model.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/model_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/native_class_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/new_instance_with_type_arguments_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/no_metadata_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/null_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/operator_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/other_library.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/parameter_is_const_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/parameter_metadata_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/parameter_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/private_symbol_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/proxy_type_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/redirecting_factory_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/reflect_class_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/reflect_model_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/reflect_runtime_type_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/reflect_uninstantiated_class_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/reflected_type_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/reflectively_instantiate_uninstantiated_class_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/regress_14304_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/removed_api_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/repeated_private_anon_mixin_app1.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/repeated_private_anon_mixin_app2.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/repeated_private_anon_mixin_app_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/return_type_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/set_field_with_final_inheritance_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/set_field_with_final_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/static_members_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/static_metatarget_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/static_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/stringify.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/superclass_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/symbol_validation_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/synthetic_accessor_properties_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/to_string_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/top_level_accessors_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/toplevel_members_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/type_argument_is_type_variable_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/type_variable_owner_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/typearguments_mirror_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/typedef_metadata_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/typedef_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/typevariable_mirror_metadata_test.dart View 0 chunks +-1 lines, --1 lines 0 comments Download
pkg/checked_mirrors/test/from_sdk/unmangled_type_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/unnamed_library_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/unused_mirrors_used_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/from_sdk/variable_is_const_test.dart View 1 chunk +1 line, -1 line 0 comments Download
pkg/checked_mirrors/test/logging_and_throws_test.dart View 1 chunk +202 lines, -0 lines 0 comments Download
pkg/checked_mirrors/test/logging_test.dart View 1 chunk +206 lines, -0 lines 0 comments Download
pkg/checked_mirrors/test/throws_test.dart View 1 chunk +143 lines, -0 lines 0 comments Download
pkg/pkg.status View 1 chunk +44 lines, -0 lines 0 comments Download

Powered by Google App Engine
This is Rietveld 408576698