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

Issue 10377181: add support for package: to the editor (Closed)

Created:
8 years, 7 months ago by keertip
Modified:
8 years, 7 months ago
CC:
reviews_dartlang.org, mattsh
Visibility:
Public.

Description

add support for package: to the editor Committed: https://code.google.com/p/dart/source/detail?r=7744

Patch Set 1 #

Patch Set 2 : '' #

Total comments: 22

Patch Set 3 : '' #

Total comments: 3

Patch Set 4 : '' #

Total comments: 15

Patch Set 5 : '' #

Patch Set 6 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+720 lines, -529 lines) Patch
M compiler/java/com/google/dart/compiler/CommandLineOptions.java View 1 2 3 4 2 chunks +11 lines, -0 lines 0 comments Download
M compiler/java/com/google/dart/compiler/SystemLibraryManager.java View 1 2 3 4 11 chunks +87 lines, -6 lines 0 comments Download
M compiler/java/com/google/dart/compiler/UrlLibrarySource.java View 1 2 3 2 chunks +8 lines, -1 line 0 comments Download
M compiler/javatests/com/google/dart/compiler/SystemLibraryManagerTest.java View 1 2 3 4 chunks +4 lines, -4 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java View 1 2 3 4 5 1 chunk +5 lines, -0 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SystemLibraryManagerProvider.java View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/SystemLibraryManagerProviderAnyTest.java View 1 2 3 4 1 chunk +4 lines, -0 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/SystemLibraryManagerProviderTest.java View 1 2 3 4 3 chunks +26 lines, -2 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.debug.core/src/com/google/dart/tools/debug/core/chromejs/DartSourcePathComputerDelegate.java View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.deploy/plugin.xml View 1 2 3 1 chunk +0 lines, -6 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.deploy/src/com/google/dart/tools/ui/build/CleanLibrariesAction.java View 1 2 3 2 chunks +3 lines, -1 line 0 comments Download
D editor/tools/plugins/com.google.dart.tools.deploy/src/com/google/dart/tools/ui/build/CleanLibrariesJob.java View 1 2 3 1 chunk +0 lines, -70 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/META-INF/MANIFEST.MF View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/plugin.xml View 1 2 3 3 chunks +5 lines, -23 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/filesview/FilesView.java View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/filesview/ResourceLabelProvider.java View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/preferences/DartBasePreferencePage.java View 1 2 3 4 5 5 chunks +57 lines, -375 lines 0 comments Download
A editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/preferences/FontPreferencePage.java View 1 chunk +469 lines, -0 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/preferences/PreferencesMessages.java View 1 2 3 3 chunks +5 lines, -1 line 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/preferences/PreferencesMessages.properties View 1 2 3 3 chunks +6 lines, -13 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/problemsview/ProblemsView.java View 1 2 3 4 chunks +4 lines, -4 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/DartOutlinePage.java View 1 2 3 4 chunks +6 lines, -6 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/functions/DartOutlineInformationControl.java View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
A + editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/util/CleanLibrariesJob.java View 4 chunks +4 lines, -5 lines 0 comments Download

Messages

Total messages: 8 (0 generated)
keertip
- added compiler option for --package-root - added awareness to SystemLibraryManager for package: - augmented ...
8 years, 7 months ago (2012-05-16 23:31:37 UTC) #1
Brian Wilkerson
LGTM. I didn't look very closely at the UI pieces, but everything else looks fine, ...
8 years, 7 months ago (2012-05-17 14:25:56 UTC) #2
keertip
http://codereview.chromium.org/10377181/diff/2001/compiler/java/com/google/dart/compiler/SystemLibraryManager.java File compiler/java/com/google/dart/compiler/SystemLibraryManager.java (right): http://codereview.chromium.org/10377181/diff/2001/compiler/java/com/google/dart/compiler/SystemLibraryManager.java#newcode120 compiler/java/com/google/dart/compiler/SystemLibraryManager.java:120: public URI expandRelativeDartUri(URI uri) throws AssertionError { Rename is ...
8 years, 7 months ago (2012-05-17 15:49:58 UTC) #3
pquitslund
LGTM Fantastic. Can't wait to give this a whirl! http://codereview.chromium.org/10377181/diff/12001/editor/tools/plugins/com.google.dart.tools.deploy/plugin.xml File editor/tools/plugins/com.google.dart.tools.deploy/plugin.xml (left): http://codereview.chromium.org/10377181/diff/12001/editor/tools/plugins/com.google.dart.tools.deploy/plugin.xml#oldcode54 editor/tools/plugins/com.google.dart.tools.deploy/plugin.xml:54: ...
8 years, 7 months ago (2012-05-17 16:16:09 UTC) #4
keertip
http://codereview.chromium.org/10377181/diff/12001/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/preferences/DartBasePreferencePage.java File editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/preferences/DartBasePreferencePage.java (right): http://codereview.chromium.org/10377181/diff/12001/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/preferences/DartBasePreferencePage.java#newcode108 editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/preferences/DartBasePreferencePage.java:108: job.schedule(); The job does show status while being run, ...
8 years, 7 months ago (2012-05-17 17:57:27 UTC) #5
danrubel
http://codereview.chromium.org/10377181/diff/11003/compiler/java/com/google/dart/compiler/SystemLibraryManager.java File compiler/java/com/google/dart/compiler/SystemLibraryManager.java (right): http://codereview.chromium.org/10377181/diff/11003/compiler/java/com/google/dart/compiler/SystemLibraryManager.java#newcode49 compiler/java/com/google/dart/compiler/SystemLibraryManager.java:49: public static final File DEFAULT_PACKAGE_PATH = new File("packages"); DEFAULT_PACKAGE_ROOT ...
8 years, 7 months ago (2012-05-17 20:19:44 UTC) #6
keertip
http://codereview.chromium.org/10377181/diff/11003/compiler/java/com/google/dart/compiler/SystemLibraryManager.java File compiler/java/com/google/dart/compiler/SystemLibraryManager.java (right): http://codereview.chromium.org/10377181/diff/11003/compiler/java/com/google/dart/compiler/SystemLibraryManager.java#newcode49 compiler/java/com/google/dart/compiler/SystemLibraryManager.java:49: public static final File DEFAULT_PACKAGE_PATH = new File("packages"); On ...
8 years, 7 months ago (2012-05-17 22:09:12 UTC) #7
danrubel
8 years, 7 months ago (2012-05-17 23:07:39 UTC) #8
lgtm

Powered by Google App Engine
This is Rietveld 408576698