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

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

Issue 184503002: Remove support for --force-strip=asserts from dart2dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 dart_backend; 5 library dart_backend;
6 6
7 import 'dart:async' show Future; 7 import 'dart:async' show Future;
8 import '../elements/elements.dart'; 8 import '../elements/elements.dart';
9 import '../elements/modelx.dart' show SynthesizedConstructorElementX; 9 import '../elements/modelx.dart' show SynthesizedConstructorElementX;
10 import '../dart2jslib.dart'; 10 import '../dart2jslib.dart';
11 import '../dart_types.dart'; 11 import '../dart_types.dart';
12 import '../tree/tree.dart'; 12 import '../tree/tree.dart';
13 import '../util/util.dart'; 13 import '../util/util.dart';
14 import '../mirror_renamer/mirror_renamer.dart'; 14 import '../mirror_renamer/mirror_renamer.dart';
15 15
16 import '../scanner/scannerlib.dart' show StringToken, 16 import '../scanner/scannerlib.dart' show StringToken,
17 Keyword, 17 Keyword,
18 OPEN_PAREN_INFO, 18 OPEN_PAREN_INFO,
19 CLOSE_PAREN_INFO, 19 CLOSE_PAREN_INFO,
20 SEMICOLON_INFO, 20 SEMICOLON_INFO,
21 IDENTIFIER_INFO; 21 IDENTIFIER_INFO;
22 22
23 part 'backend.dart'; 23 part 'backend.dart';
24 part 'emitter.dart'; 24 part 'emitter.dart';
25 part 'renamer.dart'; 25 part 'renamer.dart';
26 part 'placeholder_collector.dart'; 26 part 'placeholder_collector.dart';
27 part 'utils.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698