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

Issue 1380383002: Add support for configuration-specific imports to the VM. (Closed)

Created:
5 years, 2 months ago by floitsch
Modified:
4 years, 11 months ago
Reviewers:
hausner, Ivan Posva
CC:
reviews_dartlang.org, vm-dev_dartlang.org, Ivan Posva
Base URL:
git@github.com:dart-lang/sdk.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : Reupload after merge #

Patch Set 3 : Add flag. #

Total comments: 6

Patch Set 4 : Address comments. #

Total comments: 10

Patch Set 5 : Address comments and merge. #

Patch Set 6 : Fix bad merge and some other fixes. #

Patch Set 7 : Update status file. #

Total comments: 2

Patch Set 8 : Don't allocate symbols. #

Total comments: 5

Patch Set 9 : Address comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+51 lines, -3 lines) Patch
M runtime/vm/parser.cc View 1 2 3 4 5 6 7 8 2 chunks +49 lines, -0 lines 0 comments Download
M tests/language/config_import_test.dart View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M tests/language/language.status View 1 2 3 4 5 6 2 chunks +1 line, -3 lines 0 comments Download

Messages

Total messages: 21 (4 generated)
floitsch
5 years, 2 months ago (2015-10-13 21:55:20 UTC) #2
hausner
LGTM with comments. https://codereview.chromium.org/1380383002/diff/40001/runtime/vm/parser.cc File runtime/vm/parser.cc (right): https://codereview.chromium.org/1380383002/diff/40001/runtime/vm/parser.cc#newcode5856 runtime/vm/parser.cc:5856: valueNode = ParseStringLiteral(false); Can't just assume ...
5 years, 2 months ago (2015-10-13 23:48:36 UTC) #3
floitsch
Thanks. https://codereview.chromium.org/1380383002/diff/40001/runtime/vm/parser.cc File runtime/vm/parser.cc (right): https://codereview.chromium.org/1380383002/diff/40001/runtime/vm/parser.cc#newcode5856 runtime/vm/parser.cc:5856: valueNode = ParseStringLiteral(false); On 2015/10/13 23:48:36, hausner wrote: ...
5 years, 2 months ago (2015-10-14 13:20:55 UTC) #5
Ivan Posva
Do NOT commit. I need to see the spec first before we can move forward ...
5 years, 2 months ago (2015-10-20 07:24:22 UTC) #7
floitsch
On 2015/10/20 07:24:22, Ivan Posva wrote: > Do NOT commit. I need to see the ...
5 years, 1 month ago (2015-10-26 18:12:42 UTC) #8
floitsch
On 2015/10/26 18:12:42, floitsch wrote: > On 2015/10/20 07:24:22, Ivan Posva wrote: > > Do ...
5 years, 1 month ago (2015-10-29 10:24:40 UTC) #9
mit
On 2015/10/29 10:24:40, floitsch wrote: > On 2015/10/26 18:12:42, floitsch wrote: > > On 2015/10/20 ...
5 years ago (2015-12-03 11:58:21 UTC) #10
floitsch
On 2015/12/03 11:58:21, mit wrote: > On 2015/10/29 10:24:40, floitsch wrote: > > On 2015/10/26 ...
5 years ago (2015-12-15 17:00:57 UTC) #11
Ivan Posva
-Ivan https://codereview.chromium.org/1380383002/diff/80001/runtime/vm/parser.cc File runtime/vm/parser.cc (right): https://codereview.chromium.org/1380383002/diff/80001/runtime/vm/parser.cc#newcode5851 runtime/vm/parser.cc:5851: String& key = String::ZoneHandle(Z); Why is this not ...
5 years ago (2015-12-17 06:29:43 UTC) #12
floitsch
https://codereview.chromium.org/1380383002/diff/80001/runtime/vm/parser.cc File runtime/vm/parser.cc (right): https://codereview.chromium.org/1380383002/diff/80001/runtime/vm/parser.cc#newcode5851 runtime/vm/parser.cc:5851: String& key = String::ZoneHandle(Z); On 2015/12/17 06:29:43, Ivan Posva ...
5 years ago (2015-12-17 17:08:43 UTC) #13
Ivan Posva
https://codereview.chromium.org/1380383002/diff/140001/runtime/vm/parser.cc File runtime/vm/parser.cc (right): https://codereview.chromium.org/1380383002/diff/140001/runtime/vm/parser.cc#newcode5980 runtime/vm/parser.cc:5980: const String& key = String::Handle(Symbols::FromConcatAll(pieces)); You should not be ...
5 years ago (2015-12-18 05:59:03 UTC) #14
floitsch
https://codereview.chromium.org/1380383002/diff/140001/runtime/vm/parser.cc File runtime/vm/parser.cc (right): https://codereview.chromium.org/1380383002/diff/140001/runtime/vm/parser.cc#newcode5980 runtime/vm/parser.cc:5980: const String& key = String::Handle(Symbols::FromConcatAll(pieces)); On 2015/12/18 05:59:03, Ivan ...
5 years ago (2015-12-18 13:40:57 UTC) #15
Ivan Posva
LGTM -Ivan https://codereview.chromium.org/1380383002/diff/160001/runtime/vm/parser.cc File runtime/vm/parser.cc (right): https://codereview.chromium.org/1380383002/diff/160001/runtime/vm/parser.cc#newcode5954 runtime/vm/parser.cc:5954: GrowableObjectArray::Handle(GrowableObjectArray::New()); Sorry missed this before in the ...
5 years ago (2015-12-18 18:15:39 UTC) #16
floitsch
@Ivan, please confirm that "Z" is the right argument. (Almost certain, but prefer to wait). ...
5 years ago (2015-12-19 06:36:04 UTC) #17
floitsch
On 2015/12/19 06:36:04, floitsch wrote: > @Ivan, please confirm that "Z" is the right argument. ...
4 years, 11 months ago (2016-01-05 09:34:11 UTC) #18
Ivan Posva
-Ivan https://codereview.chromium.org/1380383002/diff/160001/runtime/vm/parser.cc File runtime/vm/parser.cc (right): https://codereview.chromium.org/1380383002/diff/160001/runtime/vm/parser.cc#newcode5954 runtime/vm/parser.cc:5954: GrowableObjectArray::Handle(GrowableObjectArray::New()); On 2015/12/19 06:36:03, floitsch wrote: > On ...
4 years, 11 months ago (2016-01-06 06:40:42 UTC) #19
floitsch
4 years, 11 months ago (2016-01-06 19:16:16 UTC) #21
Message was sent while issue was closed.
Committed patchset #9 (id:180001) manually as
e0fe0c0ed87995150583579e4329f00f3e89f38e (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698