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

Unified Diff: lib/compiler/implementation/compiler.dart

Issue 10964013: Add an internal flag to the dart2js compiler to enable/diable inlining (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: lib/compiler/implementation/compiler.dart
diff --git a/lib/compiler/implementation/compiler.dart b/lib/compiler/implementation/compiler.dart
index 40d7b97c40c0c68ea1385cd7c99d8766951e3198..bb39e32b20294dd6ecb8270cb54b4a75d486dd69 100644
--- a/lib/compiler/implementation/compiler.dart
+++ b/lib/compiler/implementation/compiler.dart
@@ -95,6 +95,8 @@ class Compiler implements DiagnosticListener {
final bool enableTypeAssertions;
final bool enableUserAssertions;
+ bool enableInlining = true;
ahe 2012/09/21 15:00:27 The way this is used, it feels more like a "disabl
Søren Gjesse 2012/09/24 07:32:26 Done.
+
// TODO(5074): Remove this field once we don't accept the
// deprecated parameter specification.
static final bool REJECT_NAMED_ARGUMENT_AS_POSITIONAL = false;

Powered by Google App Engine
This is Rietveld 408576698