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

Unified Diff: sdk/lib/_internal/compiler/js_lib/io_patch.dart

Issue 863773002: Revert "Mark all private functions in dart: libraries as invisible (*sniff*). Previously these func… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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/vm/parser.cc ('k') | sdk/lib/io/data_transformer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/js_lib/io_patch.dart
diff --git a/sdk/lib/_internal/compiler/js_lib/io_patch.dart b/sdk/lib/_internal/compiler/js_lib/io_patch.dart
index 7071fbc15b836161248402d6540faa2317bb4341..b6400f3c69350ea57f4f9f39f6fdc8cd208df3e5 100644
--- a/sdk/lib/_internal/compiler/js_lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/js_lib/io_patch.dart
@@ -455,16 +455,16 @@ class _WindowsCodePageEncoder {
@patch
class _Filter {
@patch
- static _Filter _newZLibDeflateFilter(bool gzip, int level,
- int windowBits, int memLevel,
- int strategy,
- List<int> dictionary, bool raw) {
- throw new UnsupportedError("_newZLibDeflateFilter");
+ static _Filter newZLibDeflateFilter(bool gzip, int level,
+ int windowBits, int memLevel,
+ int strategy,
+ List<int> dictionary, bool raw) {
+ throw new UnsupportedError("newZLibDeflateFilter");
}
@patch
- static _Filter _newZLibInflateFilter(int windowBits,
- List<int> dictionary, bool raw) {
- throw new UnsupportedError("_newZLibInflateFilter");
+ static _Filter newZLibInflateFilter(int windowBits,
+ List<int> dictionary, bool raw) {
+ throw new UnsupportedError("newZLibInflateFilter");
}
}
@@ -524,7 +524,7 @@ class _FileSystemWatcher {
@patch
class _IOService {
@patch
- static Future _dispatch(int request, List data) {
- throw new UnsupportedError("_IOService._dispatch");
+ static Future dispatch(int request, List data) {
+ throw new UnsupportedError("_IOService.dispatch");
}
}
« no previous file with comments | « runtime/vm/parser.cc ('k') | sdk/lib/io/data_transformer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698