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

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

Issue 1093363002: Refactor DartTypeVisitor and ElementVisitor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 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 19 matching lines...) Expand all
30 import '../library_loader.dart' show LibraryLoader, LoadedLibraries; 30 import '../library_loader.dart' show LibraryLoader, LoadedLibraries;
31 import '../native/native.dart' as native; 31 import '../native/native.dart' as native;
32 import '../ssa/ssa.dart'; 32 import '../ssa/ssa.dart';
33 import '../tree/tree.dart'; 33 import '../tree/tree.dart';
34 import '../types/types.dart'; 34 import '../types/types.dart';
35 import '../universe/universe.dart'; 35 import '../universe/universe.dart';
36 import '../util/characters.dart'; 36 import '../util/characters.dart';
37 import '../util/util.dart'; 37 import '../util/util.dart';
38 38
39 import '../elements/visitor.dart' show 39 import '../elements/visitor.dart' show
40 ElementVisitor; 40 BaseElementVisitor;
41 41
42 import '../js_backend/codegen/task.dart'; 42 import '../js_backend/codegen/task.dart';
43 import 'patch_resolver.dart'; 43 import 'patch_resolver.dart';
44 import '../resolution/resolution.dart' show ResolutionRegistry; 44 import '../resolution/resolution.dart' show ResolutionRegistry;
45 45
46 part 'backend.dart'; 46 part 'backend.dart';
47 part 'checked_mode_helpers.dart'; 47 part 'checked_mode_helpers.dart';
48 part 'constant_emitter.dart'; 48 part 'constant_emitter.dart';
49 part 'constant_handler_javascript.dart'; 49 part 'constant_handler_javascript.dart';
50 part 'constant_system_javascript.dart'; 50 part 'constant_system_javascript.dart';
51 part 'custom_elements_analysis.dart'; 51 part 'custom_elements_analysis.dart';
52 part 'minify_namer.dart'; 52 part 'minify_namer.dart';
53 part 'namer.dart'; 53 part 'namer.dart';
54 part 'no_such_method_registry.dart'; 54 part 'no_such_method_registry.dart';
55 part 'runtime_types.dart'; 55 part 'runtime_types.dart';
56 part 'type_variable_handler.dart'; 56 part 'type_variable_handler.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698