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

Unified Diff: runtime/bin/input_stream.dart

Issue 10872033: Change getters syntax in dart:io library. (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 | « runtime/bin/http_parser.dart ('k') | runtime/bin/list_stream_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/input_stream.dart
diff --git a/runtime/bin/input_stream.dart b/runtime/bin/input_stream.dart
index e8202fb70c559eb4b8eff5b0e51b77060784ad38..844abfba6c8cf265c6791e3b22bb27db7f65d20c 100644
--- a/runtime/bin/input_stream.dart
+++ b/runtime/bin/input_stream.dart
@@ -76,7 +76,7 @@ interface InputStream {
* Returns whether the stream is closed. There will be no more data
* to read.
*/
- bool get closed();
+ bool get closed;
/**
* Sets the handler that gets called when data is available.
@@ -148,12 +148,12 @@ interface StringInputStream default _StringInputStream {
* Returns whether the stream has been closed. There might still be
* more data to read.
*/
- bool get closed();
+ bool get closed;
/**
* Returns the encoding used to decode the binary data into characters.
*/
- Encoding get encoding();
+ Encoding get encoding;
/**
* Sets the handler that gets called when data is available. The two
@@ -205,12 +205,12 @@ interface ChunkedInputStream default _ChunkedInputStream {
* Returns whether the stream has been closed. There might still be
* more data to read.
*/
- bool get closed();
+ bool get closed;
/**
* Returns the chunk size used by this stream.
*/
- int get chunkSize();
+ int get chunkSize;
/**
* Sets the chunk size used by this stream.
« no previous file with comments | « runtime/bin/http_parser.dart ('k') | runtime/bin/list_stream_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698