@@ -2760,19 +2760,20 @@ public boolean getStrictMessageReplacement() {
2760
2760
public String toString () {
2761
2761
return MoreObjects .toStringHelper (this )
2762
2762
.omitNullValues ()
2763
- .add ("aliasStringsMode" , getAliasStringsMode ())
2764
2763
.add ("aliasHandler" , getAliasTransformationHandler ())
2764
+ .add ("aliasStringsMode" , getAliasStringsMode ())
2765
2765
.add ("ambiguateProperties" , ambiguateProperties )
2766
2766
.add ("angularPass" , angularPass )
2767
2767
.add ("assumeClosuresOnlyCaptureReferences" , assumeClosuresOnlyCaptureReferences )
2768
2768
.add ("assumeGettersArePure" , assumeGettersArePure )
2769
2769
.add ("assumeStrictThis" , assumeStrictThis ())
2770
2770
.add ("browserResolverPrefixReplacements" , browserResolverPrefixReplacements )
2771
2771
.add ("checkDeterminism" , getCheckDeterminism ())
2772
- .add ("checksOnly" , checksOnly )
2773
2772
.add ("checkSuspiciousCode" , checkSuspiciousCode )
2774
2773
.add ("checkSymbols" , checkSymbols )
2775
2774
.add ("checkTypes" , checkTypes )
2775
+ .add ("checksOnly" , checksOnly )
2776
+ .add ("chunksToPrintAfterEachPassRegexList" , chunksToPrintAfterEachPassRegexList )
2776
2777
.add ("closurePass" , closurePass )
2777
2778
.add ("coalesceVariableNames" , coalesceVariableNames )
2778
2779
.add ("codingConvention" , getCodingConvention ())
@@ -2796,9 +2797,10 @@ public String toString() {
2796
2797
.add ("debugLogDirectory" , debugLogDirectory )
2797
2798
.add ("defineReplacements" , getDefineReplacements ())
2798
2799
.add ("dependencyOptions" , getDependencyOptions ())
2799
- .add ("devirtualizeMethods" , devirtualizeMethods )
2800
2800
.add ("devMode" , devMode )
2801
+ .add ("devirtualizeMethods" , devirtualizeMethods )
2801
2802
.add ("disambiguateProperties" , disambiguateProperties )
2803
+ .add ("emitUseStrict" , emitUseStrict )
2802
2804
.add ("enableModuleRewriting" , enableModuleRewriting )
2803
2805
.add ("environment" , getEnvironment ())
2804
2806
.add ("errorFormat" , errorFormat )
@@ -2834,7 +2836,6 @@ public String toString() {
2834
2836
.add ("inputVariableMap" , inputVariableMap )
2835
2837
.add ("instrumentForCoverageOnly" , instrumentForCoverageOnly )
2836
2838
.add ("instrumentForCoverageOption" , instrumentForCoverageOption .toString ())
2837
- .add ("productionInstrumentationArrayName" , productionInstrumentationArrayName )
2838
2839
.add ("isolatePolyfills" , isolatePolyfills )
2839
2840
.add ("j2clMinifierEnabled" , j2clMinifierEnabled )
2840
2841
.add ("j2clMinifierPruningManifest" , j2clMinifierPruningManifest )
@@ -2849,12 +2850,8 @@ public String toString() {
2849
2850
.add ("maxFunctionSizeAfterInlining" , maxFunctionSizeAfterInlining )
2850
2851
.add ("messageBundle" , messageBundle )
2851
2852
.add ("moduleRoots" , moduleRoots )
2852
- .add ("chunksToPrintAfterEachPassRegexList" , chunksToPrintAfterEachPassRegexList )
2853
- .add ("qnameUsesToPrintAfterEachPassRegexList" , qnameUsesToPrintAfterEachPassList )
2854
- .add (
2855
- "rewriteGlobalDeclarationsForTryCatchWrapping" ,
2856
- rewriteGlobalDeclarationsForTryCatchWrapping )
2857
2853
.add ("nameGenerator" , nameGenerator )
2854
+ .add ("numParallelThreads" , numParallelThreads )
2858
2855
.add ("optimizeArgumentsArray" , optimizeArgumentsArray )
2859
2856
.add ("optimizeCalls" , optimizeCalls )
2860
2857
.add ("optimizeESClassConstructors" , optimizeESClassConstructors )
@@ -2867,47 +2864,52 @@ public String toString() {
2867
2864
parentChunkCanSeeSymbolsDeclaredInChildren )
2868
2865
.add ("parseJsDocDocumentation" , isParseJsDocDocumentation ())
2869
2866
.add ("pathEscaper" , pathEscaper )
2870
- .add ("polymerVersion" , polymerVersion )
2871
2867
.add ("polymerExportPolicy" , polymerExportPolicy )
2868
+ .add ("polymerVersion" , polymerVersion )
2872
2869
.add ("preferSingleQuotes" , preferSingleQuotes )
2873
2870
.add ("preferStableNames" , preferStableNames )
2874
2871
.add ("preserveDetailedSourceInfo" , preservesDetailedSourceInfo ())
2875
- .add ("preserveNonJSDocComments" , getPreserveNonJSDocComments ())
2876
2872
.add ("preserveGoogProvidesAndRequires" , preserveClosurePrimitives )
2873
+ .add ("preserveNonJSDocComments" , getPreserveNonJSDocComments ())
2877
2874
.add ("preserveTypeAnnotations" , preserveTypeAnnotations )
2878
2875
.add ("prettyPrint" , prettyPrint )
2879
2876
.add ("preventLibraryInjection" , preventLibraryInjection )
2880
2877
.add ("printConfig" , printConfig )
2881
2878
.add ("printInputDelimiter" , printInputDelimiter )
2882
2879
.add ("printSourceAfterEachPass" , printSourceAfterEachPass )
2883
2880
.add ("processCommonJSModules" , processCommonJSModules )
2881
+ .add ("productionInstrumentationArrayName" , productionInstrumentationArrayName )
2884
2882
.add ("propertiesThatMustDisambiguate" , propertiesThatMustDisambiguate )
2885
2883
.add ("propertyRenaming" , propertyRenaming )
2886
2884
.add ("propertyRenamingOnlyCompilationMode" , propertyRenamingOnlyCompilationMode )
2887
2885
.add ("protectHiddenSideEffects" , protectHiddenSideEffects )
2886
+ .add ("qnameUsesToPrintAfterEachPassRegexList" , qnameUsesToPrintAfterEachPassList )
2888
2887
.add ("quoteKeywordProperties" , quoteKeywordProperties )
2889
2888
.add ("removeAbstractMethods" , removeAbstractMethods )
2890
2889
.add ("removeClosureAsserts" , removeClosureAsserts )
2891
- .add ("removeJ2clAsserts" , removeJ2clAsserts )
2892
2890
.add ("removeDeadCode" , removeDeadCode )
2891
+ .add ("removeJ2clAsserts" , removeJ2clAsserts )
2893
2892
.add ("removeUnusedClassProperties" , removeUnusedClassProperties )
2894
2893
.add ("removeUnusedConstructorProperties" , removeUnusedConstructorProperties )
2895
2894
.add ("removeUnusedLocalVars" , removeUnusedLocalVars )
2896
2895
.add ("removeUnusedPrototypeProperties" , removeUnusedPrototypeProperties )
2897
2896
.add ("removeUnusedVars" , removeUnusedVars )
2897
+ .add ("renamePrefix" , renamePrefix )
2898
+ .add ("renamePrefixNamespace" , renamePrefixNamespace )
2898
2899
.add (
2899
2900
"renamePrefixNamespaceAssumeCrossChunkNames" ,
2900
2901
renamePrefixNamespaceAssumeCrossChunkNames )
2901
- .add ("renamePrefixNamespace" , renamePrefixNamespace )
2902
- .add ("renamePrefix" , renamePrefix )
2903
2902
.add ("replaceIdGenerators" , replaceIdGenerators )
2904
2903
.add ("replaceMessagesWithChromeI18n" , replaceMessagesWithChromeI18n )
2905
2904
.add ("replaceStringsFunctionDescriptions" , replaceStringsFunctionDescriptions )
2906
2905
.add ("replaceStringsPlaceholderToken" , replaceStringsPlaceholderToken )
2907
2906
.add ("reserveRawExports" , reserveRawExports )
2908
2907
.add ("rewriteFunctionExpressions" , rewriteFunctionExpressions )
2909
- .add ("rewritePolyfills" , rewritePolyfills )
2908
+ .add (
2909
+ "rewriteGlobalDeclarationsForTryCatchWrapping" ,
2910
+ rewriteGlobalDeclarationsForTryCatchWrapping )
2910
2911
.add ("rewriteModulesBeforeTypechecking" , rewriteModulesBeforeTypechecking )
2912
+ .add ("rewritePolyfills" , rewritePolyfills )
2911
2913
.add ("skipNonTranspilationPasses" , skipNonTranspilationPasses )
2912
2914
.add ("smartNameRemoval" , smartNameRemoval )
2913
2915
.add ("sourceMapDetailLevel" , sourceMapDetailLevel )
@@ -2925,9 +2927,8 @@ public String toString() {
2925
2927
.add ("tracer" , tracer )
2926
2928
.add ("trustedStrings" , trustedStrings )
2927
2929
.add ("tweakProcessing" , getTweakProcessing ())
2928
- .add ("emitUseStrict" , emitUseStrict )
2929
- .add ("useTypesForLocalOptimization" , useTypesForLocalOptimization )
2930
2930
.add ("unusedImportsToRemove" , unusedImportsToRemove )
2931
+ .add ("useTypesForLocalOptimization" , useTypesForLocalOptimization )
2931
2932
.add ("variableRenaming" , variableRenaming )
2932
2933
.add ("warningsGuard" , getWarningsGuard ())
2933
2934
.add ("wrapGoogModulesForWhitespaceOnly" , wrapGoogModulesForWhitespaceOnly )
0 commit comments