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

Unified Diff: tools/publish_pkg.py

Issue 12747004: Remove special treatment of analyzer-experimental in publish_pkg (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/publish_pkg.py
diff --git a/tools/publish_pkg.py b/tools/publish_pkg.py
index d1629c9ea88841d86e727829d11837c6f8e48fd0..1c4cb59c32d21b13fdc4e8239ee88ce9b3ee182a 100755
--- a/tools/publish_pkg.py
+++ b/tools/publish_pkg.py
@@ -160,12 +160,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
''');
- # TODO(jmesserly): this is a hack to make analyzer-experimental work.
- if pkgName.endswith('-experimental'):
- pkgReplace = (pkgName, pkgName.replace('-', '_'))
- replaceInDart.append(pkgReplace)
- replaceInPubspec.append(pkgReplace)
-
replaceInDart.append(
(r'(import|part)(\s+)(\'|")(\.\./)+pkg/([^/]+/)lib/', r'\1\2\3package:\5'))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698