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

Side by Side Diff: utils/pub/entrypoint.dart

Issue 13095015: Use backtracking when solving dependency constraints. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean up some test code. Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | utils/pub/log.dart » ('j') | utils/pub/package.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library entrypoint; 5 library entrypoint;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import '../../pkg/pathos/lib/path.dart' as path; 9 import '../../pkg/pathos/lib/path.dart' as path;
10 10
11 import 'io.dart'; 11 import 'io.dart';
12 import 'lock_file.dart'; 12 import 'lock_file.dart';
13 import 'log.dart' as log; 13 import 'log.dart' as log;
14 import 'package.dart'; 14 import 'package.dart';
15 import 'pubspec.dart'; 15 import 'pubspec.dart';
16 import 'sdk.dart' as sdk; 16 import 'sdk.dart' as sdk;
17 import 'system_cache.dart'; 17 import 'system_cache.dart';
18 import 'utils.dart'; 18 import 'utils.dart';
19 import 'version.dart'; 19 import 'version.dart';
20 import 'version_solver.dart'; 20 import 'version_solver2.dart';
21 21
22 /// Pub operates over a directed graph of dependencies that starts at a root 22 /// Pub operates over a directed graph of dependencies that starts at a root
23 /// "entrypoint" package. This is typically the package where the current 23 /// "entrypoint" package. This is typically the package where the current
24 /// working directory is located. An entrypoint knows the [root] package it is 24 /// working directory is located. An entrypoint knows the [root] package it is
25 /// associated with and is responsible for managing the "packages" directory 25 /// associated with and is responsible for managing the "packages" directory
26 /// for it. 26 /// for it.
27 /// 27 ///
28 /// That directory contains symlinks to all packages used by an app. These links 28 /// That directory contains symlinks to all packages used by an app. These links
29 /// point either to the [SystemCache] or to some other location on the local 29 /// point either to the [SystemCache] or to some other location on the local
30 /// filesystem. 30 /// filesystem.
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 var symlink = path.join(dir, 'packages'); 300 var symlink = path.join(dir, 'packages');
301 if (fileExists(symlink)) { 301 if (fileExists(symlink)) {
302 deleteFile(symlink); 302 deleteFile(symlink);
303 } else if (dirExists(symlink)) { 303 } else if (dirExists(symlink)) {
304 deleteDir(symlink); 304 deleteDir(symlink);
305 } 305 }
306 return createSymlink(packagesDir, symlink, relative: true); 306 return createSymlink(packagesDir, symlink, relative: true);
307 }); 307 });
308 } 308 }
309 } 309 }
OLDNEW
« no previous file with comments | « no previous file | utils/pub/log.dart » ('j') | utils/pub/package.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698