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

Unified Diff: utils/pub/yaml/model.dart

Issue 10869033: Update pub to new getter syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 | « utils/pub/version_solver.dart ('k') | utils/pub/yaml/parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/yaml/model.dart
diff --git a/utils/pub/yaml/model.dart b/utils/pub/yaml/model.dart
index 0fc1b18fdd92935f62fd433d3254b54eba43e499..de9c8c83806211eaf1f5c3f8bb4ffd69712869f2 100644
--- a/utils/pub/yaml/model.dart
+++ b/utils/pub/yaml/model.dart
@@ -133,13 +133,13 @@ class _ScalarNode extends _Node {
* Returns the string representation of the scalar. After composition, this is
* equal to the canonical serialization of the value of the scalar.
*/
- String get content() => _content != null ? _content : canonicalContent;
+ String get content => _content != null ? _content : canonicalContent;
/**
* Returns the canonical serialization of the value of the scalar. If the
* value isn't given, the result of this will be "null".
*/
- String get canonicalContent() {
+ String get canonicalContent {
if (value == null || value is bool || value is int) return '$value';
if (value is num) {
« no previous file with comments | « utils/pub/version_solver.dart ('k') | utils/pub/yaml/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698