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

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

Issue 221873002: Compute frontend/backend specific constants. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes Created 6 years, 8 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) 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 Future; 7 import 'dart:async' show Future;
8 import 'dart:collection' show Queue, LinkedHashMap; 8 import 'dart:collection' show Queue, LinkedHashMap;
9 9
10 import '../closure.dart'; 10 import '../closure.dart';
(...skipping 10 matching lines...) Expand all
21 import '../tree/tree.dart'; 21 import '../tree/tree.dart';
22 import '../types/types.dart'; 22 import '../types/types.dart';
23 import '../universe/universe.dart'; 23 import '../universe/universe.dart';
24 import '../util/characters.dart'; 24 import '../util/characters.dart';
25 import '../util/util.dart'; 25 import '../util/util.dart';
26 26
27 part 'backend.dart'; 27 part 'backend.dart';
28 part 'checked_mode_helpers.dart'; 28 part 'checked_mode_helpers.dart';
29 part 'constant_emitter.dart'; 29 part 'constant_emitter.dart';
30 part 'constant_system_javascript.dart'; 30 part 'constant_system_javascript.dart';
31 part 'constant_handler_javascript.dart';
31 part 'minify_namer.dart'; 32 part 'minify_namer.dart';
32 part 'namer.dart'; 33 part 'namer.dart';
33 part 'native_emitter.dart'; 34 part 'native_emitter.dart';
34 part 'runtime_types.dart'; 35 part 'runtime_types.dart';
35 part 'type_variable_handler.dart'; 36 part 'type_variable_handler.dart';
36 part 'custom_elements_analysis.dart'; 37 part 'custom_elements_analysis.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698