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

Unified Diff: runtime/bin/filter_patch.dart

Issue 2230383003: Implement @patch annotation for patch class members (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: wip Created 4 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/file_system_entity_patch.dart ('k') | runtime/bin/io_service_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/filter_patch.dart
diff --git a/runtime/bin/filter_patch.dart b/runtime/bin/filter_patch.dart
index 11691e863553b1da47a73a4bdfbae420c4bd01b9..db086f9a6b9141733078f00c277ec6e56ea07cb4 100644
--- a/runtime/bin/filter_patch.dart
+++ b/runtime/bin/filter_patch.dart
@@ -29,14 +29,14 @@ class _ZLibDeflateFilter extends _FilterImpl {
}
@patch class _Filter {
- /* @patch */ static _Filter _newZLibDeflateFilter(bool gzip, int level,
+ @patch static _Filter _newZLibDeflateFilter(bool gzip, int level,
int windowBits, int memLevel,
int strategy,
List<int> dictionary,
bool raw) =>
new _ZLibDeflateFilter(gzip, level, windowBits, memLevel, strategy,
dictionary, raw);
- /* @patch */ static _Filter _newZLibInflateFilter(int windowBits,
+ @patch static _Filter _newZLibInflateFilter(int windowBits,
List<int> dictionary,
bool raw) =>
new _ZLibInflateFilter(windowBits, dictionary, raw);
« no previous file with comments | « runtime/bin/file_system_entity_patch.dart ('k') | runtime/bin/io_service_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698