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

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

Issue 949733003: Share the JavaScript based LinkedHashMap implementation between constant maps and the LinkedHashMap… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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 EventSink, Future; 7 import 'dart:async' show EventSink, Future;
8 8
9 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' 9 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart'
10 as embeddedNames; 10 as embeddedNames;
(...skipping 21 matching lines...) Expand all
32 import '../types/types.dart'; 32 import '../types/types.dart';
33 import '../universe/universe.dart'; 33 import '../universe/universe.dart';
34 import '../util/characters.dart'; 34 import '../util/characters.dart';
35 import '../util/util.dart'; 35 import '../util/util.dart';
36 36
37 import '../elements/visitor.dart' show 37 import '../elements/visitor.dart' show
38 ElementVisitor; 38 ElementVisitor;
39 39
40 import '../js_backend/codegen/task.dart'; 40 import '../js_backend/codegen/task.dart';
41 import 'patch_resolver.dart'; 41 import 'patch_resolver.dart';
42 import '../resolution/resolution.dart' show ResolutionRegistry;
42 43
43 part 'backend.dart'; 44 part 'backend.dart';
44 part 'checked_mode_helpers.dart'; 45 part 'checked_mode_helpers.dart';
45 part 'constant_emitter.dart'; 46 part 'constant_emitter.dart';
46 part 'constant_handler_javascript.dart'; 47 part 'constant_handler_javascript.dart';
47 part 'constant_system_javascript.dart'; 48 part 'constant_system_javascript.dart';
48 part 'custom_elements_analysis.dart'; 49 part 'custom_elements_analysis.dart';
49 part 'minify_namer.dart'; 50 part 'minify_namer.dart';
50 part 'namer.dart'; 51 part 'namer.dart';
51 part 'runtime_types.dart'; 52 part 'runtime_types.dart';
52 part 'type_variable_handler.dart'; 53 part 'type_variable_handler.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698