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

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

Issue 1418573011: dart2js: Change how super tear-offs are registered. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix Created 5 years, 1 month 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 | « no previous file | pkg/compiler/lib/src/js_backend/codegen/codegen.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) 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 8 import '../common/names.dart' show
9 Uris; 9 Uris;
10 import '../common/resolution.dart' show 10 import '../common/resolution.dart' show
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 } 380 }
381 381
382 Element get consoleTraceHelper { 382 Element get consoleTraceHelper {
383 return findHelper('consoleTraceHelper'); 383 return findHelper('consoleTraceHelper');
384 } 384 }
385 385
386 Element get postTraceHelper { 386 Element get postTraceHelper {
387 return findHelper('postTraceHelper'); 387 return findHelper('postTraceHelper');
388 } 388 }
389 389
390 Element get closureFromTearOff { 390 FunctionElement get closureFromTearOff {
391 return findHelper('closureFromTearOff'); 391 return findHelper('closureFromTearOff');
392 } 392 }
393 393
394 Element get isJsIndexable { 394 Element get isJsIndexable {
395 return findHelper('isJsIndexable'); 395 return findHelper('isJsIndexable');
396 } 396 }
397 397
398 398
399 Element get throwIllegalArgumentException { 399 Element get throwIllegalArgumentException {
400 return findHelper('iae'); 400 return findHelper('iae');
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 } 673 }
674 674
675 Element get findIndexForNativeSubclassType { 675 Element get findIndexForNativeSubclassType {
676 return findInterceptor('findIndexForNativeSubclassType'); 676 return findInterceptor('findIndexForNativeSubclassType');
677 } 677 }
678 678
679 Element get convertRtiToRuntimeType { 679 Element get convertRtiToRuntimeType {
680 return findHelper('convertRtiToRuntimeType'); 680 return findHelper('convertRtiToRuntimeType');
681 } 681 }
682 } 682 }
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_backend/codegen/codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698