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

Unified Diff: pkg/compiler/lib/src/commandline_options.dart

Issue 1322973007: Use memory compiler in compiler_helper.dart. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Update cf. comments. Created 5 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
« no previous file with comments | « pkg/compiler/lib/src/apiimpl.dart ('k') | pkg/compiler/lib/src/dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/commandline_options.dart
diff --git a/pkg/compiler/lib/src/commandline_options.dart b/pkg/compiler/lib/src/commandline_options.dart
new file mode 100644
index 0000000000000000000000000000000000000000..b28946d64b50fc208e73d2ec822206819692f4f9
--- /dev/null
+++ b/pkg/compiler/lib/src/commandline_options.dart
@@ -0,0 +1,43 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library dart2js.cmdline.options;
+
+/// Commandline flags used in `dart2js.dart` and/or `apiimpl.dart`.
+class Flags {
+ static const String allowNativeExtensions = '--allow-native-extensions';
+ static const String analyzeAll = '--analyze-all';
+ static const String analyzeMain = '--analyze-main';
+ static const String analyzeOnly = '--analyze-only';
+ static const String analyzeSignaturesOnly = '--analyze-signatures-only';
+ static const String disableNativeLiveTypeAnalysis =
+ '--disable-native-live-type-analysis';
+ static const String disableTypeInference = '--disable-type-inference';
+ static const String dumpInfo = '--dump-info';
+ static const String enableCheckedMode = '--enable-checked-mode';
+ static const String enableConcreteTypeInference =
+ '--enable-concrete-type-inference';
+ static const String enableExperimentalMirrors =
+ '--enable-experimental-mirrors';
+ static const String fastStartup = '--fast-startup';
+ static const String fatalWarnings = '--fatal-warnings';
+ static const String generateCodeWithCompileTimeErrors =
+ '--generate-code-with-compile-time-errors';
+ static const String incrementalSupport = '--incremental-support';
+ static const String minify = '--minify';
+ static const String noFrequencyBasedMinification =
+ '--no-frequency-based-minification';
+ static const String noSourceMaps = '--no-source-maps';
+ static const String preserveComments = '--preserve-comments';
+ static const String preserveUris = '--preserve-uris';
+ static const String showPackageWarnings = '--show-package-warnings';
+ static const String suppressWarnings = '--suppress-warnings';
+ static const String terse = '--terse';
+ static const String testMode = '--test-mode';
+ static const String trustPrimitives = '--trust-primitives';
+ static const String trustTypeAnnotations = '--trust-type-annotations';
+ static const String useContentSecurityPolicy = '--csp';
+ static const String useCpsIr = '--use-cps-ir';
+ static const String verbose = '--verbose';
+}
« no previous file with comments | « pkg/compiler/lib/src/apiimpl.dart ('k') | pkg/compiler/lib/src/dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698