Uses of Class
com.google.javascript.jscomp.parsing.parser.FeatureSet.Feature
-
Packages that use FeatureSet.Feature Package Description com.google.javascript.jscomp com.google.javascript.jscomp.parsing com.google.javascript.jscomp.parsing.parser -
-
Uses of FeatureSet.Feature in com.google.javascript.jscomp
Methods in com.google.javascript.jscomp with parameters of type FeatureSet.Feature Modifier and Type Method Description boolean
CompilerOptions. 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.Feature Modifier and Type Method Description static Config.LanguageMode
Config.LanguageMode. minimumRequiredFor(FeatureSet.Feature feature)
Returns the lowestConfig.LanguageMode
that 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.Feature Modifier and Type Method Description static FeatureSet.Feature
FeatureSet.Feature. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FeatureSet.Feature[]
FeatureSet.Feature. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.javascript.jscomp.parsing.parser that return types with arguments of type FeatureSet.Feature Modifier and Type Method Description com.google.common.collect.ImmutableSet<FeatureSet.Feature>
FeatureSet. getFeatures()
Methods in com.google.javascript.jscomp.parsing.parser with parameters of type FeatureSet.Feature Modifier and Type Method Description boolean
FeatureSet. contains(FeatureSet.Feature feature)
Does thisFeatureSet
contain the given feature?boolean
FeatureSet. has(FeatureSet.Feature feature)
Does thisFeatureSet
includefeature
?FeatureSet
FeatureSet. with(FeatureSet.Feature feature)
Returns a feature set combining all the features fromthis
andfeature
.FeatureSet
FeatureSet. with(FeatureSet.Feature... newFeatures)
Returns a feature set combining all the features fromthis
andnewFeatures
.FeatureSet
FeatureSet. without(FeatureSet.Feature featureToRemove, FeatureSet.Feature... moreFeaturesToRemove)
Method parameters in com.google.javascript.jscomp.parsing.parser with type arguments of type FeatureSet.Feature Modifier and Type Method Description FeatureSet
FeatureSet. with(java.util.Set<FeatureSet.Feature> newFeatures)
Returns a feature set combining all the features fromthis
andnewFeatures
.
-