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

Unified Diff: pkg/analyzer/lib/src/generated/source_io.dart

Issue 708263002: Clean up references in comments (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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/analyzer/lib/src/generated/source.dart ('k') | pkg/analyzer/test/generated/engine_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/source_io.dart
diff --git a/pkg/analyzer/lib/src/generated/source_io.dart b/pkg/analyzer/lib/src/generated/source_io.dart
index 9fa796ab2acbf0aa8ddd659f25f42f3b186cb3a6..b5f02e82e564224d1a87657364d4da99cc196048 100644
--- a/pkg/analyzer/lib/src/generated/source_io.dart
+++ b/pkg/analyzer/lib/src/generated/source_io.dart
@@ -42,9 +42,8 @@ class DirectoryBasedSourceContainer implements SourceContainer {
/**
* Construct a container representing the specified directory and containing any sources whose
- * [Source#getFullName] starts with the directory's path. This is a convenience method,
- * fully equivalent to [DirectoryBasedSourceContainer#DirectoryBasedSourceContainer]
- * .
+ * [Source.fullName] starts with the directory's path. This is a convenience method,
+ * fully equivalent to [DirectoryBasedSourceContainer.con2].
*
* @param directory the directory (not `null`)
*/
@@ -52,7 +51,7 @@ class DirectoryBasedSourceContainer implements SourceContainer {
/**
* Construct a container representing the specified path and containing any sources whose
- * [Source#getFullName] starts with the specified path.
+ * [Source.fullName] starts with the specified path.
*
* @param path the path (not `null` and not empty)
*/
@@ -200,13 +199,13 @@ class FileBasedSource implements Source {
/**
* Get the contents and timestamp of the underlying file.
*
- * Clients should consider using the the method [AnalysisContext#getContents]
+ * Clients should consider using the the method [AnalysisContext.getContents]
* because contexts can have local overrides of the content of a source that the source is not
* aware of.
*
* @return the contents of the source paired with the modification stamp of the source
* @throws Exception if the contents of this source could not be accessed
- * @see #getContents()
+ * See [contents].
*/
TimestampedData<String> get contentsFromFile {
return new TimestampedData<String>(file.lastModified(), file.readAsStringSync());
« no previous file with comments | « pkg/analyzer/lib/src/generated/source.dart ('k') | pkg/analyzer/test/generated/engine_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698