Chromium Code Reviews| 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
|
| } |
| /** |