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

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

Issue 12388018: Re-enable support for --disallow-unsafe-eval. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review feedback. Created 7 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: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;
(...skipping 12 matching lines...) Expand all
23 import '../tree/tree.dart'; 23 import '../tree/tree.dart';
24 import '../types/types.dart'; 24 import '../types/types.dart';
25 import '../universe/universe.dart' hide js; // TODO(ahe): VM bug, see above. 25 import '../universe/universe.dart' hide js; // TODO(ahe): VM bug, see above.
26 import '../util/characters.dart'; 26 import '../util/characters.dart';
27 import '../util/util.dart'; 27 import '../util/util.dart';
28 28
29 part 'backend.dart'; 29 part 'backend.dart';
30 part 'constant_emitter.dart'; 30 part 'constant_emitter.dart';
31 part 'constant_system_javascript.dart'; 31 part 'constant_system_javascript.dart';
32 part 'emitter.dart'; 32 part 'emitter.dart';
33 // TODO(8522): Restore --disallow-unsafe-eval. 33 part 'emitter_no_eval.dart';
34 // part 'emitter_no_eval.dart';
35 part 'minify_namer.dart'; 34 part 'minify_namer.dart';
36 part 'namer.dart'; 35 part 'namer.dart';
37 part 'native_emitter.dart'; 36 part 'native_emitter.dart';
38 part 'runtime_types.dart'; 37 part 'runtime_types.dart';
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/js_backend/emitter_no_eval.dart ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698