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

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

Issue 256453004: Avoid inlining constants that are used via a deferred import. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use intermediate constants. Created 6 years, 7 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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_tree; 5 library dart_tree;
6 6
7 import '../dart2jslib.dart' as dart2js; 7 import '../dart2jslib.dart' as dart2js;
8 import '../dart_types.dart'; 8 import '../dart_types.dart';
9 import '../util/util.dart'; 9 import '../util/util.dart';
10 import '../elements/elements.dart' 10 import '../elements/elements.dart'
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 return unimplemented(); 761 return unimplemented();
762 } 762 }
763 763
764 ast.Expression visitInterceptor(dart2js.InterceptorConstant constant) { 764 ast.Expression visitInterceptor(dart2js.InterceptorConstant constant) {
765 return unimplemented(); 765 return unimplemented();
766 } 766 }
767 767
768 ast.Expression visitDummy(dart2js.DummyConstant constant) { 768 ast.Expression visitDummy(dart2js.DummyConstant constant) {
769 return unimplemented(); 769 return unimplemented();
770 } 770 }
771
772 ast.Expression visitDeferred(dart2js.DeferredConstant constant) {
773 return unimplemented();
774 }
771 } 775 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698