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

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

Issue 11622011: Restructure YAML package suitable for pub lish (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add yaml exclude Created 7 years, 11 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 | « utils/apidoc/apidoc.gyp ('k') | utils/pub/pubspec.dart » ('j') | no next file with comments »
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 lock_file; 5 library lock_file;
6 6
7 import 'dart:json' as json; 7 import 'dart:json' as json;
8 import 'package.dart'; 8 import 'package.dart';
9 import 'source_registry.dart'; 9 import 'source_registry.dart';
10 import 'utils.dart'; 10 import 'utils.dart';
11 import 'version.dart'; 11 import 'version.dart';
12 import 'yaml/yaml.dart'; 12 import '../../pkg/yaml/lib/yaml.dart';
13 13
14 /// A parsed and validated `pubspec.lock` file. 14 /// A parsed and validated `pubspec.lock` file.
15 class LockFile { 15 class LockFile {
16 /// The packages this lockfile pins. 16 /// The packages this lockfile pins.
17 Map<String, PackageId> packages; 17 Map<String, PackageId> packages;
18 18
19 LockFile._(this.packages); 19 LockFile._(this.packages);
20 20
21 LockFile.empty() 21 LockFile.empty()
22 : packages = <String, PackageId>{}; 22 : packages = <String, PackageId>{};
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 'source': id.source.name, 81 'source': id.source.name,
82 'description': id.description 82 'description': id.description
83 }; 83 };
84 }); 84 });
85 85
86 // TODO(nweiz): Serialize using the YAML library once it supports 86 // TODO(nweiz): Serialize using the YAML library once it supports
87 // serialization. For now, we use JSON, since it's a subset of YAML anyway. 87 // serialization. For now, we use JSON, since it's a subset of YAML anyway.
88 return json.stringify({'packages': packagesObj}); 88 return json.stringify({'packages': packagesObj});
89 } 89 }
90 } 90 }
OLDNEW
« no previous file with comments | « utils/apidoc/apidoc.gyp ('k') | utils/pub/pubspec.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698