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

Side by Side Diff: pkg/compiler/lib/src/js_backend/backend_helpers.dart

Issue 2639273004: Use entities in main_call_stub_generator (Closed)
Patch Set: Created 3 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 library dart2js.js_backend.helpers; 5 library dart2js.js_backend.helpers;
6 6
7 import '../common.dart'; 7 import '../common.dart';
8 import '../common/names.dart' show Identifiers, Uris; 8 import '../common/names.dart' show Identifiers, Uris;
9 import '../common/resolution.dart' show Resolution; 9 import '../common/resolution.dart' show Resolution;
10 import '../compiler.dart' show Compiler; 10 import '../compiler.dart' show Compiler;
(...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 } 812 }
813 813
814 MethodElement get functionTypeTestMetaHelper { 814 MethodElement get functionTypeTestMetaHelper {
815 return _findHelper('functionTypeTestMetaHelper'); 815 return _findHelper('functionTypeTestMetaHelper');
816 } 816 }
817 817
818 MethodElement get defineProperty { 818 MethodElement get defineProperty {
819 return _findHelper('defineProperty'); 819 return _findHelper('defineProperty');
820 } 820 }
821 821
822 Element get startRootIsolate { 822 MethodElement get startRootIsolate {
823 return _find(isolateHelperLibrary, START_ROOT_ISOLATE); 823 return _find(isolateHelperLibrary, START_ROOT_ISOLATE);
824 } 824 }
825 825
826 Element get currentIsolate { 826 Element get currentIsolate {
827 return _find(isolateHelperLibrary, '_currentIsolate'); 827 return _find(isolateHelperLibrary, '_currentIsolate');
828 } 828 }
829 829
830 Element get callInIsolate { 830 Element get callInIsolate {
831 return _find(isolateHelperLibrary, '_callInIsolate'); 831 return _find(isolateHelperLibrary, '_callInIsolate');
832 } 832 }
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 } 875 }
876 876
877 MethodElement get toStringForNativeObject { 877 MethodElement get toStringForNativeObject {
878 return _findHelper('toStringForNativeObject'); 878 return _findHelper('toStringForNativeObject');
879 } 879 }
880 880
881 MethodElement get hashCodeForNativeObject { 881 MethodElement get hashCodeForNativeObject {
882 return _findHelper('hashCodeForNativeObject'); 882 return _findHelper('hashCodeForNativeObject');
883 } 883 }
884 } 884 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698