Uses of Interface
dev.civl.abc.ast.type.IF.FunctionType
Packages that use FunctionType
Package
Description
Submodule ast.conversion provides classes for representing
to C's "implicit conversions".
Submodule ast.entity defines entities
(objects of type
Entity),
the abstract things such as types, structures, unions, enumerations,
objects (variables), functions, and so on,
which can be named by identifiers in a program.The ast.type submodule defines the (abstract) types
that can be specified in a program.
-
Uses of FunctionType in dev.civl.abc.ast.conversion.IF
Methods in dev.civl.abc.ast.conversion.IF that return FunctionTypeMethods in dev.civl.abc.ast.conversion.IF with parameters of type FunctionTypeModifier and TypeMethodDescriptionConversionFactory.functionConversion(FunctionType type) Returns the function conversion object with old type equal to the given function type. -
Uses of FunctionType in dev.civl.abc.ast.entity.IF
Methods in dev.civl.abc.ast.entity.IF that return FunctionType -
Uses of FunctionType in dev.civl.abc.ast.type.IF
Methods in dev.civl.abc.ast.type.IF that return FunctionTypeModifier and TypeMethodDescriptionTypeFactory.functionType(ObjectType returnType) Returns the function type with the given return type but with no information on the parameters.TypeFactory.functionType(ObjectType returnType, boolean fromIdentifierList, Iterable<ObjectType> parameterTypes, boolean hasVariableArgs) Returns the function type with the given return type and parameter type list.