Uses of Class
com.google.javascript.rhino.jstype.FunctionType.Parameter
Packages that use FunctionType.Parameter
-
Uses of FunctionType.Parameter in com.google.javascript.rhino.jstype
Methods in com.google.javascript.rhino.jstype that return FunctionType.ParameterMethods in com.google.javascript.rhino.jstype that return types with arguments of type FunctionType.ParameterModifier and TypeMethodDescriptioncom.google.common.collect.ImmutableList<FunctionType.Parameter> FunctionParamBuilder.build()com.google.common.collect.ImmutableList<FunctionType.Parameter> JSTypeRegistry.createOptionalParameters(JSType... parameterTypes) Creates a tree hierarchy representing a typed parameter list in which every parameter is optional.com.google.common.collect.ImmutableList<FunctionType.Parameter> JSTypeRegistry.createParameters(JSType... parameterTypes) Creates a tree hierarchy representing a typed argument list.com.google.common.collect.ImmutableList<FunctionType.Parameter> JSTypeRegistry.createParametersWithVarArgs(JSType... parameterTypes) Creates a tree hierarchy representing a typed argument list.final com.google.common.collect.ImmutableList<FunctionType.Parameter> FunctionType.getParameters()Methods in com.google.javascript.rhino.jstype with parameters of type FunctionType.ParameterModifier and TypeMethodDescriptionvoidFunctionParamBuilder.newOptionalParameterFrom(FunctionType.Parameter p) Copies the parameter specification from the given parameter, but makes sure it's optional.voidFunctionParamBuilder.newParameterFrom(FunctionType.Parameter n) Copies the existing parameter into this builderMethod parameters in com.google.javascript.rhino.jstype with type arguments of type FunctionType.ParameterModifier and TypeMethodDescriptionJSTypeRegistry.createConstructorType(String name, Node source, List<FunctionType.Parameter> parameters, JSType returnType, @Nullable com.google.common.collect.ImmutableList<TemplateType> templateKeys, boolean isAbstract) Creates a constructor function type.JSTypeRegistry.createFunctionType(JSType returnType, List<FunctionType.Parameter> parameters) FunctionType.Builder.withParameters(List<FunctionType.Parameter> parameters) Set the parameters of the function type.