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

Side by Side Diff: pkg/compiler/lib/src/dart_backend/dart_backend.dart

Issue 806103003: cps-ir: Add support for intercepted calls. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Bailout on special selectors. Created 6 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 dart_backend; 5 library dart_backend;
6 6
7 import 'dart:async' show Future; 7 import 'dart:async' show Future;
8 import 'dart:math' show max; 8 import 'dart:math' show max;
9 import '../elements/elements.dart'; 9 import '../elements/elements.dart';
10 import '../dart2jslib.dart'; 10 import '../dart2jslib.dart';
(...skipping 14 matching lines...) Expand all
25 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; 25 import 'backend_ast_to_frontend_ast.dart' as backend2frontend;
26 import '../tracer.dart'; 26 import '../tracer.dart';
27 import '../../compiler.dart' show CompilerOutputProvider; 27 import '../../compiler.dart' show CompilerOutputProvider;
28 28
29 import '../scanner/scannerlib.dart' show StringToken, 29 import '../scanner/scannerlib.dart' show StringToken,
30 Keyword, 30 Keyword,
31 OPEN_PAREN_INFO, 31 OPEN_PAREN_INFO,
32 CLOSE_PAREN_INFO, 32 CLOSE_PAREN_INFO,
33 SEMICOLON_INFO, 33 SEMICOLON_INFO,
34 IDENTIFIER_INFO; 34 IDENTIFIER_INFO;
35 import '../js_backend/codegen/glue.dart';
35 36
36 part 'backend.dart'; 37 part 'backend.dart';
37 part 'renamer.dart'; 38 part 'renamer.dart';
38 part 'placeholder_collector.dart'; 39 part 'placeholder_collector.dart';
39 part 'outputter.dart'; 40 part 'outputter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698