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

Unified Diff: lib/src/cached_package.dart

Issue 2165423002: Add support for Flutter SDK constraints. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Code review changes Created 4 years, 5 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 | lib/src/entrypoint.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/cached_package.dart
diff --git a/lib/src/cached_package.dart b/lib/src/cached_package.dart
index c67a3c1f9ccf2e06cc575b6411aa100c9c170940..bd6fec0e28fb242ddca82a1dc98b146e7d2f2aa4 100644
--- a/lib/src/cached_package.dart
+++ b/lib/src/cached_package.dart
@@ -71,7 +71,8 @@ class _CachedPubspec implements Pubspec {
List<PackageDep> get dependencies => _inner.dependencies;
List<PackageDep> get devDependencies => _inner.devDependencies;
List<PackageDep> get dependencyOverrides => _inner.dependencyOverrides;
- PubspecEnvironment get environment => _inner.environment;
+ VersionConstraint get dartSdkConstraint => _inner.dartSdkConstraint;
+ VersionConstraint get flutterSdkConstraint => _inner.flutterSdkConstraint;
String get publishTo => _inner.publishTo;
Map<String, String> get executables => _inner.executables;
bool get isPrivate => _inner.isPrivate;
« no previous file with comments | « no previous file | lib/src/entrypoint.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698