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

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

Issue 12280012: Apply Issue 12253048: "Add back --disallow-unsafe-eval for M3. This flag will be temporarily disabl… (Closed) Base URL: http://dart.googlecode.com/svn/trunk/dart/
Patch Set: Created 7 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 | « sdk/lib/_internal/compiler/implementation/js_backend/backend.dart ('k') | tools/VERSION » ('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:collection' show LinkedHashMap; 7 import 'dart:collection' show LinkedHashMap;
8 8
9 import '../closure.dart'; 9 import '../closure.dart';
10 import '../../compiler.dart' as api; 10 import '../../compiler.dart' as api;
11 import '../elements/elements.dart'; 11 import '../elements/elements.dart';
12 import '../elements/modelx.dart' show FunctionElementX; 12 import '../elements/modelx.dart' show FunctionElementX;
13 import '../dart2jslib.dart' hide Selector; 13 import '../dart2jslib.dart' hide Selector;
14 import '../dart_types.dart'; 14 import '../dart_types.dart';
15 import '../js/js.dart' as js; 15 import '../js/js.dart' as js;
16 import '../native_handler.dart' as native; 16 import '../native_handler.dart' as native;
17 import '../source_file.dart'; 17 import '../source_file.dart';
18 import '../source_map_builder.dart'; 18 import '../source_map_builder.dart';
19 import '../ssa/ssa.dart'; 19 import '../ssa/ssa.dart';
20 import '../tree/tree.dart'; 20 import '../tree/tree.dart';
21 import '../universe/universe.dart'; 21 import '../universe/universe.dart';
22 import '../util/characters.dart'; 22 import '../util/characters.dart';
23 import '../util/util.dart'; 23 import '../util/util.dart';
24 24
25 part 'backend.dart'; 25 part 'backend.dart';
26 part 'constant_emitter.dart'; 26 part 'constant_emitter.dart';
27 part 'constant_system_javascript.dart'; 27 part 'constant_system_javascript.dart';
28 part 'emitter.dart'; 28 part 'emitter.dart';
29 // TODO(8522): Restore --disallow-unsafe-eval. 29 part 'emitter_no_eval.dart';
30 // part 'emitter_no_eval.dart';
31 part 'minify_namer.dart'; 30 part 'minify_namer.dart';
32 part 'namer.dart'; 31 part 'namer.dart';
33 part 'native_emitter.dart'; 32 part 'native_emitter.dart';
34 part 'runtime_types.dart'; 33 part 'runtime_types.dart';
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/js_backend/backend.dart ('k') | tools/VERSION » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698