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

Issue 154733003: Access to imports in the VM's runtime mirrors. Extend test coverage of the source mirrors. (Closed)

Created:
6 years, 10 months ago by rmacnak
Modified:
6 years, 9 months ago
Reviewers:
gbracha, hausner
CC:
reviews_dartlang.org, vm-dev_dartlang.org
Visibility:
Public.

Description

Access to imports in the VM's runtime mirrors. Extend test coverage of the source mirrors. BUG=http://dartbug.com/10360 R=gbracha@google.com, hausner@google.com Committed: https://code.google.com/p/dart/source/detail?r=33397

Patch Set 1 #

Patch Set 2 : up similarity #

Patch Set 3 : #

Total comments: 2

Patch Set 4 : #

Patch Set 5 : sync #

Unified diffs Side-by-side diffs Delta from patch set Stats (+760 lines, -16 lines) Patch
M runtime/lib/mirrors.cc View 1 2 3 1 chunk +105 lines, -0 lines 0 comments Download
M runtime/lib/mirrors_impl.dart View 1 2 3 2 chunks +42 lines, -0 lines 0 comments Download
M runtime/vm/bootstrap_natives.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M runtime/vm/object.h View 1 2 3 4 chunks +8 lines, -2 lines 0 comments Download
M runtime/vm/object.cc View 1 2 3 1 chunk +39 lines, -0 lines 0 comments Download
M runtime/vm/parser.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M runtime/vm/parser.cc View 1 2 3 4 3 chunks +9 lines, -4 lines 0 comments Download
M runtime/vm/raw_object.h View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M runtime/vm/symbols.h View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M sdk/lib/_internal/lib/js_mirrors.dart View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M sdk/lib/mirrors/mirrors.dart View 1 2 3 1 chunk +45 lines, -0 lines 0 comments Download
M tests/compiler/dart2js/dart2js.status View 1 2 3 1 chunk +7 lines, -0 lines 0 comments Download
A tests/compiler/dart2js/mirrors/library_exports_hidden_test.dart View 1 chunk +17 lines, -0 lines 0 comments Download
A tests/compiler/dart2js/mirrors/library_exports_shown_test.dart View 1 chunk +17 lines, -0 lines 0 comments Download
A tests/compiler/dart2js/mirrors/library_imports_hidden_test.dart View 1 chunk +17 lines, -0 lines 0 comments Download
A tests/compiler/dart2js/mirrors/library_imports_prefixed_show_hide_test.dart View 1 chunk +17 lines, -0 lines 0 comments Download
A tests/compiler/dart2js/mirrors/library_imports_prefixed_test.dart View 1 chunk +17 lines, -0 lines 0 comments Download
A tests/compiler/dart2js/mirrors/library_imports_shown_test.dart View 1 chunk +17 lines, -0 lines 0 comments Download
M tests/lib/lib.status View 1 2 3 4 1 chunk +8 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_exports_hidden.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_exports_hidden_test.dart View 1 chunk +34 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_exports_shown.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_exports_shown_test.dart View 1 chunk +35 lines, -0 lines 0 comments Download
A + tests/lib/mirrors/library_imports_a.dart View 1 chunk +3 lines, -4 lines 0 comments Download
A + tests/lib/mirrors/library_imports_b.dart View 1 chunk +3 lines, -4 lines 0 comments Download
A tests/lib/mirrors/library_imports_bad_metadata_test.dart View 1 1 chunk +18 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_imports_hidden.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_imports_hidden_test.dart View 1 chunk +34 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_imports_metadata.dart View 1 1 chunk +17 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_imports_metadata_test.dart View 1 chunk +50 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_imports_prefixed.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_imports_prefixed_show_hide.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_imports_prefixed_show_hide_test.dart View 1 chunk +33 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_imports_prefixed_test.dart View 1 chunk +31 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_imports_shown.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
A tests/lib/mirrors/library_imports_shown_test.dart View 1 chunk +34 lines, -0 lines 0 comments Download
M tests/lib/mirrors/stringify.dart View 1 chunk +33 lines, -0 lines 0 comments Download

Messages

Total messages: 8 (0 generated)
rmacnak
RFC regarding runtime versus source mirror differences. https://codereview.chromium.org/154733003/diff/60001/sdk/lib/mirrors/mirrors.dart File sdk/lib/mirrors/mirrors.dart (right): https://codereview.chromium.org/154733003/diff/60001/sdk/lib/mirrors/mirrors.dart#newcode628 sdk/lib/mirrors/mirrors.dart:628: This is ...
6 years, 10 months ago (2014-02-04 22:47:19 UTC) #1
rmacnak
6 years, 10 months ago (2014-02-25 01:42:41 UTC) #2
gbracha
The API and tests lgtm as far as they go. I note that you never ...
6 years, 10 months ago (2014-02-25 01:56:44 UTC) #3
rmacnak
+Matthias re implementation
6 years, 10 months ago (2014-02-25 01:59:01 UTC) #4
hausner
Curious: why are you attaching the metadata to the Namespace object rather than the library, ...
6 years, 9 months ago (2014-03-06 20:50:15 UTC) #5
rmacnak
On 2014/03/06 20:50:15, hausner wrote: > Curious: why are you attaching the metadata to the ...
6 years, 9 months ago (2014-03-06 20:58:54 UTC) #6
hausner
LGTM.
6 years, 9 months ago (2014-03-06 21:26:00 UTC) #7
rmacnak
6 years, 9 months ago (2014-03-06 22:02:47 UTC) #8
Message was sent while issue was closed.
Committed patchset #5 manually as r33397 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698