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

Side by Side Diff: runtime/lib/function.dart

Issue 2767533002: Revert "Fix observatory tests broken by running dartfmt." (Closed)
Patch Set: Created 3 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 | « runtime/lib/expando_patch.dart ('k') | runtime/lib/function_patch.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 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 class _Closure implements Function { 5 class _Closure implements Function {
6
6 bool operator ==(other) native "Closure_equals"; 7 bool operator ==(other) native "Closure_equals";
7 8
8 int get hashCode native "Closure_hashCode"; 9 int get hashCode native "Closure_hashCode";
9 10
10 _Closure get call => this; 11 _Closure get call => this;
11 12
12 _Closure _clone() native "Closure_clone"; 13 _Closure _clone() native "Closure_clone";
13 14
14 // No instance fields should be declared before the following 3 fields whose 15 // No instance fields should be declared before the following 3 fields whose
15 // offsets must be identical in Dart and C++. 16 // offsets must be identical in Dart and C++.
16 17
17 // The following 3 fields are declared both in raw_object.h (for direct access 18 // The following 3 fields are declared both in raw_object.h (for direct access
18 // from C++ code) and also here so that the offset-to-field map used by 19 // from C++ code) and also here so that the offset-to-field map used by
19 // deferred objects is properly initialized. 20 // deferred objects is properly initialized.
20 // Caution: These fields are not Dart instances, but VM objects. 21 // Caution: These fields are not Dart instances, but VM objects.
21 // The fields had to be renamed here so that they would be private fields 22 // The fields had to be renamed here so that they would be private fields
22 // in dart 23 // in dart
23 // instantiator_ ===> _instantiator 24 // instantiator_ ===> _instantiator
24 // function_ ===> _function 25 // function_ ===> _function
25 // context_ ===> _context 26 // context_ ===> _context
26 var _instantiator; 27 var _instantiator;
27 var _function; 28 var _function;
28 var _context; 29 var _context;
29 } 30 }
OLDNEW
« no previous file with comments | « runtime/lib/expando_patch.dart ('k') | runtime/lib/function_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698