| Index: test/dart_codegen/expect/core/expando.dart
|
| diff --git a/test/dart_codegen/expect/core/expando.dart b/test/dart_codegen/expect/core/expando.dart
|
| index 3053dec058a4b1879d2663cfacab08a5300c91be..7afe768f5d8e28256dd5a502e7d5ad2adf37f4b4 100644
|
| --- a/test/dart_codegen/expect/core/expando.dart
|
| +++ b/test/dart_codegen/expect/core/expando.dart
|
| @@ -2,16 +2,16 @@ part of dart.core;
|
|
|
| class Expando<T> {
|
| final String name;
|
| - @patch Expando([String name]) : this.name = name;
|
| + Expando([String name]) : this.name = name;
|
| String toString() => "Expando:$name";
|
| - @patch T operator [](Object object) {
|
| + T operator [](Object object) {
|
| var values = Primitives.getProperty(object, _EXPANDO_PROPERTY_NAME);
|
| return ((__x21) => DDC$RT.cast(__x21, dynamic, T, "CastGeneral",
|
| - """line 44, column 12 of dart:core/expando.dart: """, __x21 is T,
|
| + """line 55, column 12 of dart:core/expando.dart: """, __x21 is T,
|
| false))(
|
| (values == null) ? null : Primitives.getProperty(values, _getKey()));
|
| }
|
| - @patch void operator []=(Object object, T value) {
|
| + void operator []=(Object object, T value) {
|
| var values = Primitives.getProperty(object, _EXPANDO_PROPERTY_NAME);
|
| if (values == null) {
|
| values = new Object();
|
|
|