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

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

Issue 1584223006: Remove signature classes from the VM. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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 unified diff | Download patch
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 _FunctionImpl implements Function { 5 class _Closure implements Function {
6 6
7 bool operator ==(other) native "FunctionImpl_equals"; 7 bool operator ==(other) native "Closure_equals";
8 8
9 int get hashCode native "FunctionImpl_hashCode"; 9 int get hashCode native "Closure_hashCode";
10 10
11 _FunctionImpl get call => this; 11 _Closure get call => this;
12 12
13 _FunctionImpl _clone() native "FunctionImpl_clone"; 13 _Closure _clone() native "Closure_clone";
14
15 // The type_arguments_, function_, and context_ fields are not declared here.
14 } 16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698