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

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

Issue 886773004: Supported versioned patching. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | « pkg/compiler/lib/src/js_backend/backend.dart ('k') | pkg/compiler/lib/src/patch_parser.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 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;
11 11
12 import '../closure.dart'; 12 import '../closure.dart';
13 import '../constants/expressions.dart'; 13 import '../constants/expressions.dart';
14 import '../constants/values.dart'; 14 import '../constants/values.dart';
15 import '../dart2jslib.dart'; 15 import '../dart2jslib.dart';
16 import '../dart_types.dart'; 16 import '../dart_types.dart';
17 import '../elements/elements.dart'; 17 import '../elements/elements.dart';
18 import '../io/code_output.dart'; 18 import '../io/code_output.dart';
19 import '../js/js.dart' as jsAst; 19 import '../js/js.dart' as jsAst;
20 import '../js/js.dart' show js; 20 import '../js/js.dart' show js;
21 import '../js_emitter/js_emitter.dart' 21 import '../js_emitter/js_emitter.dart'
22 show Emitter, CodeEmitterTask, ClassBuilder, MetadataEmitter; 22 show Emitter,
floitsch 2015/01/29 14:58:20 nit: we usually have "show" at the end of the line
Johnni Winther 2015/01/30 08:42:19 Acknowledged.
23 CodeEmitterTask,
24 ClassBuilder,
25 MetadataEmitter,
26 USE_NEW_EMITTER;
23 import '../library_loader.dart' show LibraryLoader, LoadedLibraries; 27 import '../library_loader.dart' show LibraryLoader, LoadedLibraries;
24 import '../native/native.dart' as native; 28 import '../native/native.dart' as native;
25 import '../ssa/ssa.dart'; 29 import '../ssa/ssa.dart';
26 import '../tree/tree.dart'; 30 import '../tree/tree.dart';
27 import '../types/types.dart'; 31 import '../types/types.dart';
28 import '../universe/universe.dart'; 32 import '../universe/universe.dart';
29 import '../util/characters.dart'; 33 import '../util/characters.dart';
30 import '../util/util.dart'; 34 import '../util/util.dart';
31 35
32 import '../elements/visitor.dart' show 36 import '../elements/visitor.dart' show
33 ElementVisitor; 37 ElementVisitor;
34 import '../js_backend/codegen/task.dart'; 38 import '../js_backend/codegen/task.dart';
35 import 'patch_resolver.dart'; 39 import 'patch_resolver.dart';
36 40
37 part 'backend.dart'; 41 part 'backend.dart';
38 part 'checked_mode_helpers.dart'; 42 part 'checked_mode_helpers.dart';
39 part 'constant_emitter.dart'; 43 part 'constant_emitter.dart';
40 part 'constant_handler_javascript.dart'; 44 part 'constant_handler_javascript.dart';
41 part 'constant_system_javascript.dart'; 45 part 'constant_system_javascript.dart';
42 part 'custom_elements_analysis.dart'; 46 part 'custom_elements_analysis.dart';
43 part 'minify_namer.dart'; 47 part 'minify_namer.dart';
44 part 'namer.dart'; 48 part 'namer.dart';
45 part 'runtime_types.dart'; 49 part 'runtime_types.dart';
46 part 'type_variable_handler.dart'; 50 part 'type_variable_handler.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_backend/backend.dart ('k') | pkg/compiler/lib/src/patch_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698