Uses of Enum Class
com.google.javascript.jscomp.parsing.parser.FeatureSet.Feature
Packages that use FeatureSet.Feature
Package
Description
-
Uses of FeatureSet.Feature in com.google.javascript.jscomp
Methods in com.google.javascript.jscomp with parameters of type FeatureSet.FeatureModifier and TypeMethodDescriptionbooleanCompilerOptions.needsTranspilationOf(FeatureSet.Feature feature) -
Uses of FeatureSet.Feature in com.google.javascript.jscomp.parsing
Methods in com.google.javascript.jscomp.parsing with parameters of type FeatureSet.FeatureModifier and TypeMethodDescriptionstatic Config.LanguageModeConfig.LanguageMode.minimumRequiredFor(FeatureSet.Feature feature) Returns the lowestConfig.LanguageModethat supports the specified feature. -
Uses of FeatureSet.Feature in com.google.javascript.jscomp.parsing.parser
Methods in com.google.javascript.jscomp.parsing.parser that return FeatureSet.FeatureModifier and TypeMethodDescriptionstatic FeatureSet.FeatureReturns the enum constant of this class with the specified name.static FeatureSet.Feature[]FeatureSet.Feature.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.google.javascript.jscomp.parsing.parser that return types with arguments of type FeatureSet.FeatureModifier and TypeMethodDescriptioncom.google.common.collect.ImmutableSet<FeatureSet.Feature> FeatureSet.getFeatures()Methods in com.google.javascript.jscomp.parsing.parser with parameters of type FeatureSet.FeatureModifier and TypeMethodDescriptionbooleanFeatureSet.contains(FeatureSet.Feature feature) Does thisFeatureSetcontain the given feature?booleanFeatureSet.has(FeatureSet.Feature feature) Does thisFeatureSetincludefeature?FeatureSet.with(FeatureSet.Feature feature) Returns a feature set combining all the features fromthisandfeature.FeatureSet.with(FeatureSet.Feature... newFeatures) Returns a feature set combining all the features fromthisandnewFeatures.FeatureSet.without(FeatureSet.Feature featureToRemove, FeatureSet.Feature... moreFeaturesToRemove) Method parameters in com.google.javascript.jscomp.parsing.parser with type arguments of type FeatureSet.FeatureModifier and TypeMethodDescriptionFeatureSet.with(Set<FeatureSet.Feature> newFeatures) Returns a feature set combining all the features fromthisandnewFeatures.