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

Unified Diff: test/dart_codegen/expect/core/object.dart

Issue 959913003: cleanup patch generation to preseve comments and remove @patch (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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 | « test/dart_codegen/expect/core/list.dart ('k') | test/dart_codegen/expect/core/regexp.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/core/object.dart
diff --git a/test/dart_codegen/expect/core/object.dart b/test/dart_codegen/expect/core/object.dart
index 761720afb987d709fdb52e87099ffebf49407965..b34cda4d6917c55389473803bf9cd8f5a1868c28 100644
--- a/test/dart_codegen/expect/core/object.dart
+++ b/test/dart_codegen/expect/core/object.dart
@@ -3,17 +3,17 @@ part of dart.core;
class Object {
const Object();
bool operator ==(other) => identical(this, other);
- @patch int get hashCode => ((__x30) => DDC$RT.cast(__x30, dynamic, int,
- "CastGeneral", """line 62, column 23 of dart:core/object.dart: """,
+ int get hashCode => ((__x30) => DDC$RT.cast(__x30, dynamic, int,
+ "CastGeneral", """line 73, column 23 of dart:core/object.dart: """,
__x30 is int, true))(Primitives.objectHashCode(this));
- @patch String toString() => ((__x31) => DDC$RT.cast(__x31, dynamic, String,
- "CastGeneral", """line 65, column 24 of dart:core/object.dart: """,
+ String toString() => ((__x31) => DDC$RT.cast(__x31, dynamic, String,
+ "CastGeneral", """line 78, column 24 of dart:core/object.dart: """,
__x31 is String, true))(Primitives.objectToString(this));
- @patch dynamic noSuchMethod(Invocation invocation) {
+ dynamic noSuchMethod(Invocation invocation) {
throw new NoSuchMethodError(this, invocation.memberName,
invocation.positionalArguments, invocation.namedArguments);
}
- @patch Type get runtimeType => ((__x32) => DDC$RT.cast(__x32, dynamic, Type,
- "CastGeneral", """line 77, column 27 of dart:core/object.dart: """,
+ Type get runtimeType => ((__x32) => DDC$RT.cast(__x32, dynamic, Type,
+ "CastGeneral", """line 101, column 27 of dart:core/object.dart: """,
__x32 is Type, true))(getRuntimeType(this));
}
« no previous file with comments | « test/dart_codegen/expect/core/list.dart ('k') | test/dart_codegen/expect/core/regexp.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698