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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart

Issue 602663002: Split interceptor emitter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
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 library dart2js.js_emitter; 5 library dart2js.js_emitter;
6 6
7 import '../hash/sha1.dart' show hashOfString; 7 import '../hash/sha1.dart' show hashOfString;
8 8
9 import '../common.dart'; 9 import '../common.dart';
10 10
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 79
80 import '../hash/sha1.dart'; 80 import '../hash/sha1.dart';
81 81
82 part 'class_builder.dart'; 82 part 'class_builder.dart';
83 part 'class_emitter.dart'; 83 part 'class_emitter.dart';
84 part 'code_emitter_helper.dart'; 84 part 'code_emitter_helper.dart';
85 part 'code_emitter_task.dart'; 85 part 'code_emitter_task.dart';
86 part 'container_builder.dart'; 86 part 'container_builder.dart';
87 part 'declarations.dart'; 87 part 'declarations.dart';
88 part 'helpers.dart'; 88 part 'helpers.dart';
89 part 'interceptor_emitter.dart';
90 part 'metadata_emitter.dart'; 89 part 'metadata_emitter.dart';
91 part 'nsm_emitter.dart'; 90 part 'nsm_emitter.dart';
92 part 'reflection_data_parser.dart'; 91 part 'reflection_data_parser.dart';
93 part 'type_test_emitter.dart'; 92 part 'type_test_emitter.dart';
93
94 part 'old_emitter/interceptor_emitter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698