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

Side by Side Diff: pkg/compiler/lib/src/js_backend/js_backend.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
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_backend/native_emitter.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) 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 js_backend; 5 library js_backend;
6 6
7 import 'dart:async' show EventSink, Future; 7 import 'dart:async' show EventSink, Future;
8 import 'dart:collection' show Queue, LinkedHashMap, LinkedHashSet;
9 8
10 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' 9 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart'
11 as embeddedNames; 10 as embeddedNames;
12 11
13 import '../closure.dart'; 12 import '../closure.dart';
14 import '../constants/expressions.dart'; 13 import '../constants/expressions.dart';
15 import '../constants/values.dart'; 14 import '../constants/values.dart';
16 import '../dart2jslib.dart'; 15 import '../dart2jslib.dart';
17 import '../dart_types.dart'; 16 import '../dart_types.dart';
18 import '../elements/elements.dart'; 17 import '../elements/elements.dart';
(...skipping 18 matching lines...) Expand all
37 import '../deferred_load.dart'; 36 import '../deferred_load.dart';
38 37
39 part 'backend.dart'; 38 part 'backend.dart';
40 part 'checked_mode_helpers.dart'; 39 part 'checked_mode_helpers.dart';
41 part 'constant_emitter.dart'; 40 part 'constant_emitter.dart';
42 part 'constant_handler_javascript.dart'; 41 part 'constant_handler_javascript.dart';
43 part 'constant_system_javascript.dart'; 42 part 'constant_system_javascript.dart';
44 part 'custom_elements_analysis.dart'; 43 part 'custom_elements_analysis.dart';
45 part 'minify_namer.dart'; 44 part 'minify_namer.dart';
46 part 'namer.dart'; 45 part 'namer.dart';
47 part 'native_emitter.dart';
48 part 'runtime_types.dart'; 46 part 'runtime_types.dart';
49 part 'type_variable_handler.dart'; 47 part 'type_variable_handler.dart';
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_backend/native_emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698