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

Side by Side Diff: test/dart_codegen/expect/core/object.dart

Issue 961493003: don't run dart gen on JS patch code (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 part of dart.core; 1 part of dart.core;
2 2
3 class Object { 3 class Object {
4 const Object(); 4 const Object();
5 bool operator ==(other) => identical(this, other); 5 bool operator ==(other) => identical(this, other);
6 int get hashCode => ((__x30) => DDC$RT.cast(__x30, dynamic, int, 6 external int get hashCode;
7 "CastGeneral", """line 73, column 23 of dart:core/object.dart: """, 7 external String toString();
8 __x30 is int, true))(Primitives.objectHashCode(this)); 8 external dynamic noSuchMethod(Invocation invocation);
9 String toString() => ((__x31) => DDC$RT.cast(__x31, dynamic, String, 9 external Type get runtimeType;
10 "CastGeneral", """line 78, column 24 of dart:core/object.dart: """,
11 __x31 is String, true))(Primitives.objectToString(this));
12 dynamic noSuchMethod(Invocation invocation) {
13 throw new NoSuchMethodError(this, invocation.memberName,
14 invocation.positionalArguments, invocation.namedArguments);
15 }
16 Type get runtimeType => ((__x32) => DDC$RT.cast(__x32, dynamic, Type,
17 "CastGeneral", """line 101, column 27 of dart:core/object.dart: """,
18 __x32 is Type, true))(getRuntimeType(this));
19 } 10 }
OLDNEW
« 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