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

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

Issue 1170673002: Begin to compute constant expressions in resolution. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fix BinaryConstantExpression.getKnownType 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
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 resolution; 5 library resolution;
6 6
7 import 'dart:collection' show Queue; 7 import 'dart:collection' show Queue;
8 8
9 import '../compile_time_constants.dart'; 9 import '../compile_time_constants.dart';
10 import '../constants/expressions.dart'; 10 import '../constants/expressions.dart';
11 import '../constants/values.dart'; 11 import '../constants/values.dart';
12 import '../core_types.dart';
12 import '../dart_backend/dart_backend.dart' show DartBackend; 13 import '../dart_backend/dart_backend.dart' show DartBackend;
13 import '../dart_types.dart'; 14 import '../dart_types.dart';
14 import '../dart2jslib.dart' hide DynamicAccess; 15 import '../dart2jslib.dart' hide DynamicAccess;
15 import '../tree/tree.dart'; 16 import '../tree/tree.dart';
16 import '../scanner/scannerlib.dart'; 17 import '../scanner/scannerlib.dart';
17 import '../elements/elements.dart'; 18 import '../elements/elements.dart';
18 19
19 import '../elements/modelx.dart' show 20 import '../elements/modelx.dart' show
20 BaseClassElementX, 21 BaseClassElementX,
21 BaseFunctionElementX, 22 BaseFunctionElementX,
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 part 'members.dart'; 63 part 'members.dart';
63 part 'registry.dart'; 64 part 'registry.dart';
64 part 'resolution_common.dart'; 65 part 'resolution_common.dart';
65 part 'resolution_result.dart'; 66 part 'resolution_result.dart';
66 part 'scope.dart'; 67 part 'scope.dart';
67 part 'signatures.dart'; 68 part 'signatures.dart';
68 part 'tree_elements.dart'; 69 part 'tree_elements.dart';
69 part 'typedefs.dart'; 70 part 'typedefs.dart';
70 part 'type_resolver.dart'; 71 part 'type_resolver.dart';
71 part 'variables.dart'; 72 part 'variables.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/registry.dart ('k') | pkg/compiler/lib/src/resolution/resolution_result.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698