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

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

Issue 1148343004: Remove ConstantExpression.value (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Update comments. Created 5 years, 6 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
« no previous file with comments | « pkg/compiler/lib/src/dart_backend/backend.dart ('k') | pkg/compiler/lib/src/deferred_load.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 dart_backend; 5 library dart_backend;
6 6
7 import 'dart:async' show Future; 7 import 'dart:async' show Future;
8 import 'dart:math' show max; 8 import 'dart:math' show max;
9 import '../elements/elements.dart'; 9 import '../elements/elements.dart';
10 import '../dart2jslib.dart'; 10 import '../dart2jslib.dart';
11 import '../library_loader.dart' show LoadedLibraries; 11 import '../library_loader.dart' show LoadedLibraries;
12 import '../dart_types.dart'; 12 import '../dart_types.dart';
13 import '../tree/tree.dart'; 13 import '../tree/tree.dart';
14 import '../compile_time_constants.dart'; 14 import '../compile_time_constants.dart';
15 import '../constants/constant_system.dart'; 15 import '../constants/constant_system.dart';
16 import '../constants/expressions.dart'; 16 import '../constants/expressions.dart';
17 import '../constants/values.dart';
17 import '../util/util.dart'; 18 import '../util/util.dart';
18 import '../mirror_renamer/mirror_renamer.dart'; 19 import '../mirror_renamer/mirror_renamer.dart';
19 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; 20 import 'backend_ast_to_frontend_ast.dart' as backend2frontend;
20 import '../../compiler.dart' show CompilerOutputProvider; 21 import '../../compiler.dart' show CompilerOutputProvider;
21 22
22 import '../scanner/scannerlib.dart' show StringToken, 23 import '../scanner/scannerlib.dart' show StringToken,
23 Keyword, 24 Keyword,
24 OPEN_PAREN_INFO, 25 OPEN_PAREN_INFO,
25 CLOSE_PAREN_INFO, 26 CLOSE_PAREN_INFO,
26 SEMICOLON_INFO, 27 SEMICOLON_INFO,
27 IDENTIFIER_INFO; 28 IDENTIFIER_INFO;
28 29
29 part 'backend.dart'; 30 part 'backend.dart';
30 part 'renamer.dart'; 31 part 'renamer.dart';
31 part 'placeholder_collector.dart'; 32 part 'placeholder_collector.dart';
32 part 'outputter.dart'; 33 part 'outputter.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/dart_backend/backend.dart ('k') | pkg/compiler/lib/src/deferred_load.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698