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

Unified Diff: utils/pub/yaml/parser.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/yaml/model.dart ('k') | utils/pub/yaml/yaml_map.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/yaml/parser.dart
diff --git a/utils/pub/yaml/parser.dart b/utils/pub/yaml/parser.dart
index 1aaabfd9e6d36e3ba6285c3ab611e0c292560b24..7f4875ebfcdcbe4e291b030aee2ed6451bea71f1 100644
--- a/utils/pub/yaml/parser.dart
+++ b/utils/pub/yaml/parser.dart
@@ -441,7 +441,7 @@ class _Parser {
"invalid YAML in $farthestContext");
}
- /** Returns the number of spaces after the current position. */
+ /** Returns the number of spaces after the current position. */
int countIndentation() {
var i = 0;
while (peek(i) == SP) i++;
@@ -483,10 +483,10 @@ class _Parser {
}
/** Returns whether the current position is at the beginning of a line. */
- bool get atStartOfLine() => column == 0;
+ bool get atStartOfLine => column == 0;
/** Returns whether the current position is at the end of the input. */
- bool get atEndOfFile() => pos == len;
+ bool get atEndOfFile => pos == len;
/**
* Given an indicator character, returns the type of that indicator (or null
@@ -1899,5 +1899,5 @@ class _BlockHeader {
_BlockHeader(this.additionalIndent, this.chomping);
- bool get autoDetectIndent() => additionalIndent == null;
+ bool get autoDetectIndent => additionalIndent == null;
}
« no previous file with comments | « utils/pub/yaml/model.dart ('k') | utils/pub/yaml/yaml_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698