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

Unified Diff: pkg/yaml/lib/src/yaml_node.dart

Issue 413403002: Fix lingering references to the old Span in yaml. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 | « pkg/yaml/lib/src/null_span.dart ('k') | pkg/yaml/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/yaml/lib/src/yaml_node.dart
diff --git a/pkg/yaml/lib/src/yaml_node.dart b/pkg/yaml/lib/src/yaml_node.dart
index 4f770609b36ea17a9821183575b06bfe3e8eb037..6320156e19febf53647698814f1f57e9ef91d511 100644
--- a/pkg/yaml/lib/src/yaml_node.dart
+++ b/pkg/yaml/lib/src/yaml_node.dart
@@ -117,7 +117,7 @@ class YamlList extends YamlNode with collection.ListMixin {
/// Any [SourceSpan]s returned by this list or its children will be dummies
/// without useful location information. However, they will have a reasonable
/// implementation of [SourceSpan.getLocationMessage]. If [sourceUrl] is
- /// passed, it's used as the [Span.sourceUrl].
+ /// passed, it's used as the [SourceSpan.sourceUrl].
///
/// [sourceUrl] may be either a [String], a [Uri], or `null`.
factory YamlList.wrap(List dartList, {sourceUrl}) =>
@@ -144,7 +144,7 @@ class YamlScalar extends YamlNode {
///
/// This scalar's [span] won't have useful location information. However, it
/// will have a reasonable implementation of [SourceSpan.message]. If
- /// [sourceUrl] is passed, it's used as the [Span.sourceUrl].
+ /// [sourceUrl] is passed, it's used as the [SourceSpan.sourceUrl].
///
/// [sourceUrl] may be either a [String], a [Uri], or `null`.
YamlScalar.wrap(this.value, {sourceUrl})
« no previous file with comments | « pkg/yaml/lib/src/null_span.dart ('k') | pkg/yaml/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698