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

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

Issue 26662006: Changed LinkedHashSet to Set and LinkedHashMap to Map. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: HashMap -> Map. Created 7 years, 2 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:collection' show LinkedHashMap, Queue; 7 import 'dart:collection' show Queue;
8 8
9 import '../common.dart'; 9 import '../common.dart';
10 10
11 import '../js/js.dart' as jsAst; 11 import '../js/js.dart' as jsAst;
12 12
13 import '../closure.dart' show 13 import '../closure.dart' show
14 ClosureClassElement, 14 ClosureClassElement,
15 ClosureClassMap, 15 ClosureClassMap,
16 ClosureFieldElement; 16 ClosureFieldElement;
17 17
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 part 'code_emitter_helper.dart'; 62 part 'code_emitter_helper.dart';
63 part 'code_emitter_task.dart'; 63 part 'code_emitter_task.dart';
64 part 'container_builder.dart'; 64 part 'container_builder.dart';
65 part 'declarations.dart'; 65 part 'declarations.dart';
66 part 'helpers.dart'; 66 part 'helpers.dart';
67 part 'interceptor_emitter.dart'; 67 part 'interceptor_emitter.dart';
68 part 'metadata_emitter.dart'; 68 part 'metadata_emitter.dart';
69 part 'nsm_emitter.dart'; 69 part 'nsm_emitter.dart';
70 part 'reflection_data_parser.dart'; 70 part 'reflection_data_parser.dart';
71 part 'type_test_emitter.dart'; 71 part 'type_test_emitter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698