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

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

Issue 848063003: dart2js: move NativeEmitter into js_emitter directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove spurious new line. Created 5 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 | 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 'dart:async'; 7 import 'dart:async';
8 import 'dart:convert'; 8 import 'dart:convert';
9 9
10 import '../common.dart'; 10 import '../common.dart';
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 import '../util/util.dart' show 83 import '../util/util.dart' show
84 equalElements; 84 equalElements;
85 85
86 import '../deferred_load.dart' show 86 import '../deferred_load.dart' show
87 OutputUnit; 87 OutputUnit;
88 88
89 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' 89 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart'
90 as embeddedNames; 90 as embeddedNames;
91 91
92 import '../hash/sha1.dart'; 92 import '../hash/sha1.dart';
93 import '../native/native.dart' as native;
93 94
94 part 'class_stub_generator.dart'; 95 part 'class_stub_generator.dart';
95 part 'code_emitter_task.dart'; 96 part 'code_emitter_task.dart';
96 part 'helpers.dart'; 97 part 'helpers.dart';
97 part 'interceptor_stub_generator.dart'; 98 part 'interceptor_stub_generator.dart';
99 part 'native_emitter.dart';
98 part 'native_generator.dart'; 100 part 'native_generator.dart';
99 part 'type_test_generator.dart'; 101 part 'type_test_generator.dart';
100 part 'type_test_registry.dart'; 102 part 'type_test_registry.dart';
101 103
102 part 'old_emitter/class_builder.dart'; 104 part 'old_emitter/class_builder.dart';
103 part 'old_emitter/class_emitter.dart'; 105 part 'old_emitter/class_emitter.dart';
104 part 'old_emitter/code_emitter_helper.dart'; 106 part 'old_emitter/code_emitter_helper.dart';
105 part 'old_emitter/container_builder.dart'; 107 part 'old_emitter/container_builder.dart';
106 part 'old_emitter/declarations.dart'; 108 part 'old_emitter/declarations.dart';
107 part 'old_emitter/emitter.dart'; 109 part 'old_emitter/emitter.dart';
108 part 'old_emitter/interceptor_emitter.dart'; 110 part 'old_emitter/interceptor_emitter.dart';
109 part 'old_emitter/metadata_emitter.dart'; 111 part 'old_emitter/metadata_emitter.dart';
110 part 'old_emitter/nsm_emitter.dart'; 112 part 'old_emitter/nsm_emitter.dart';
111 part 'old_emitter/reflection_data_parser.dart'; 113 part 'old_emitter/reflection_data_parser.dart';
112 part 'old_emitter/type_test_emitter.dart'; 114 part 'old_emitter/type_test_emitter.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_backend/native_emitter.dart ('k') | pkg/compiler/lib/src/js_emitter/native_emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698