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

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

Issue 131233009: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
Index: pkg/analyzer/lib/src/generated/source.dart
diff --git a/pkg/analyzer/lib/src/generated/source.dart b/pkg/analyzer/lib/src/generated/source.dart
index fc9d672c59737f5dea800b8ebf7b1942e77a7576..b38854b24070304b72da247d65b002d309802a82 100644
--- a/pkg/analyzer/lib/src/generated/source.dart
+++ b/pkg/analyzer/lib/src/generated/source.dart
@@ -455,20 +455,12 @@ abstract class Source {
*/
abstract class Source_ContentReceiver {
/**
- * Accept the contents of a source represented as a character buffer.
+ * Accept the contents of a source.
*
* @param contents the contents of the source
* @param modificationTime the time at which the contents were last set
*/
- void accept(CharBuffer contents, int modificationTime);
-
- /**
- * Accept the contents of a source represented as a string.
- *
- * @param contents the contents of the source
- * @param modificationTime the time at which the contents were last set
- */
- void accept2(String contents, int modificationTime);
+ void accept(CharSequence contents, int modificationTime);
Brian Wilkerson 2014/02/06 14:59:15 Any chance we could just translate CharSequence to
}
/**

Powered by Google App Engine
This is Rietveld 408576698