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

Unified Diff: runtime/lib/expando_patch.dart

Issue 2612043002: Fixes to patch files necessary to use the analyzer (Closed)
Patch Set: Created 3 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
Index: runtime/lib/expando_patch.dart
diff --git a/runtime/lib/expando_patch.dart b/runtime/lib/expando_patch.dart
index ac5f706e934492908c266082852dfd0916baac53..af55a4dc95325b574ba8d546b3e6c844bf606242 100644
--- a/runtime/lib/expando_patch.dart
+++ b/runtime/lib/expando_patch.dart
@@ -3,8 +3,9 @@
// BSD-style license that can be found in the LICENSE file.
@patch class Expando<T> {
- @patch Expando([String this.name])
- : _data = new List(_minSize),
+ @patch Expando([String name])
+ : name = name,
+ _data = new List(_minSize),
_used = 0;
static const _minSize = 8;

Powered by Google App Engine
This is Rietveld 408576698