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

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

Issue 1376113002: dart2js: Remove ConcreteTypeInference (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « pkg/compiler/lib/src/apiimpl.dart ('k') | pkg/compiler/lib/src/compiler.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 dart2js.cmdline.options; 5 library dart2js.cmdline.options;
6 6
7 /// Commandline flags used in `dart2js.dart` and/or `apiimpl.dart`. 7 /// Commandline flags used in `dart2js.dart` and/or `apiimpl.dart`.
8 class Flags { 8 class Flags {
9 static const String allowMockCompilation = '--allow-mock-compilation'; 9 static const String allowMockCompilation = '--allow-mock-compilation';
10 static const String allowNativeExtensions = '--allow-native-extensions'; 10 static const String allowNativeExtensions = '--allow-native-extensions';
11 static const String analyzeAll = '--analyze-all'; 11 static const String analyzeAll = '--analyze-all';
12 static const String analyzeMain = '--analyze-main'; 12 static const String analyzeMain = '--analyze-main';
13 static const String analyzeOnly = '--analyze-only'; 13 static const String analyzeOnly = '--analyze-only';
14 static const String analyzeSignaturesOnly = '--analyze-signatures-only'; 14 static const String analyzeSignaturesOnly = '--analyze-signatures-only';
15 static const String disableDiagnosticColors = '--disable-diagnostic-colors'; 15 static const String disableDiagnosticColors = '--disable-diagnostic-colors';
16 static const String disableNativeLiveTypeAnalysis = 16 static const String disableNativeLiveTypeAnalysis =
17 '--disable-native-live-type-analysis'; 17 '--disable-native-live-type-analysis';
18 static const String disableTypeInference = '--disable-type-inference'; 18 static const String disableTypeInference = '--disable-type-inference';
19 static const String dumpInfo = '--dump-info'; 19 static const String dumpInfo = '--dump-info';
20 static const String enableAssertMessage = '--assert-message'; 20 static const String enableAssertMessage = '--assert-message';
21 static const String enableCheckedMode = '--enable-checked-mode'; 21 static const String enableCheckedMode = '--enable-checked-mode';
22 static const String enableConcreteTypeInference =
23 '--enable-concrete-type-inference';
24 static const String enableDiagnosticColors = '--enable-diagnostic-colors'; 22 static const String enableDiagnosticColors = '--enable-diagnostic-colors';
25 static const String enableExperimentalMirrors = 23 static const String enableExperimentalMirrors =
26 '--enable-experimental-mirrors'; 24 '--enable-experimental-mirrors';
27 static const String fastStartup = '--fast-startup'; 25 static const String fastStartup = '--fast-startup';
28 static const String fatalWarnings = '--fatal-warnings'; 26 static const String fatalWarnings = '--fatal-warnings';
29 static const String generateCodeWithCompileTimeErrors = 27 static const String generateCodeWithCompileTimeErrors =
30 '--generate-code-with-compile-time-errors'; 28 '--generate-code-with-compile-time-errors';
31 static const String incrementalSupport = '--incremental-support'; 29 static const String incrementalSupport = '--incremental-support';
32 static const String minify = '--minify'; 30 static const String minify = '--minify';
33 static const String noFrequencyBasedMinification = 31 static const String noFrequencyBasedMinification =
34 '--no-frequency-based-minification'; 32 '--no-frequency-based-minification';
35 static const String noSourceMaps = '--no-source-maps'; 33 static const String noSourceMaps = '--no-source-maps';
36 static const String preserveComments = '--preserve-comments'; 34 static const String preserveComments = '--preserve-comments';
37 static const String preserveUris = '--preserve-uris'; 35 static const String preserveUris = '--preserve-uris';
38 static const String showPackageWarnings = '--show-package-warnings'; 36 static const String showPackageWarnings = '--show-package-warnings';
39 static const String suppressHints = '--suppress-hints'; 37 static const String suppressHints = '--suppress-hints';
40 static const String suppressWarnings = '--suppress-warnings'; 38 static const String suppressWarnings = '--suppress-warnings';
41 static const String terse = '--terse'; 39 static const String terse = '--terse';
42 static const String testMode = '--test-mode'; 40 static const String testMode = '--test-mode';
43 static const String trustPrimitives = '--trust-primitives'; 41 static const String trustPrimitives = '--trust-primitives';
44 static const String trustTypeAnnotations = '--trust-type-annotations'; 42 static const String trustTypeAnnotations = '--trust-type-annotations';
45 static const String useContentSecurityPolicy = '--csp'; 43 static const String useContentSecurityPolicy = '--csp';
46 static const String useCpsIr = '--use-cps-ir'; 44 static const String useCpsIr = '--use-cps-ir';
47 static const String verbose = '--verbose'; 45 static const String verbose = '--verbose';
48 static const String version = '--version'; 46 static const String version = '--version';
49 } 47 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/apiimpl.dart ('k') | pkg/compiler/lib/src/compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698