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

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

Issue 11299009: Support type literals as compile-time constants. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 1 month 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 resolution; 5 library resolution;
6 6
7 import '../dart2jslib.dart' hide Diagnostic; 7 import '../dart2jslib.dart' hide Diagnostic;
8 import '../../compiler.dart' show Diagnostic; 8 import '../../compiler.dart' show Diagnostic;
9 import '../tree/tree.dart'; 9 import '../tree/tree.dart';
10 import '../elements/elements.dart'; 10 import '../elements/elements.dart';
11 import '../util/util.dart'; 11 import '../util/util.dart';
12 import '../runtime_types.dart';
ngeoffray 2012/11/20 14:13:19 This doesn't look right.
12 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation; 13 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation;
13 14
14 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; 15 import 'secret_tree_element.dart' show getTreeElement, setTreeElement;
15 16
16 part 'members.dart'; 17 part 'members.dart';
17 part 'scope.dart'; 18 part 'scope.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698