Uses of Interface
org.ek9lang.compiler.symbols.IAggregateSymbol
Packages that use IAggregateSymbol
Package
Description
Common parts of processing that can be reused across various phases.
F - Resolution of Explicitly Defined Type Symbols - at this point phase1 processing should have defined
most of the explicitly defined symbols, so they should be resolvable.
G - Full Symbol Resolution can now take place.
Contains critical general components used in the
Ek9Compiler
listeners.
This is the main source of EK9 Symbols used within the compiler.
-
Uses of IAggregateSymbol in org.ek9lang.compiler.common
Classes in org.ek9lang.compiler.common that implement interfaces with type arguments of type IAggregateSymbolModifier and TypeClassDescriptionclass
Predicate to see if an aggregate mandated pure in its construction.Methods in org.ek9lang.compiler.common that return IAggregateSymbolModifier and TypeMethodDescriptionMethodAndAggregateData.aggregateSymbol()
Returns the value of theaggregateSymbol
record component.Methods in org.ek9lang.compiler.common with parameters of type IAggregateSymbolModifier and TypeMethodDescriptionboolean
AggregateHasPureConstruction.test
(IAggregateSymbol aggregateSymbol) Constructors in org.ek9lang.compiler.common with parameters of type IAggregateSymbolModifierConstructorDescriptionMethodAndAggregateData
(MethodSymbol methodSymbol, IAggregateSymbol aggregateSymbol) Creates an instance of aMethodAndAggregateData
record class. -
Uses of IAggregateSymbol in org.ek9lang.compiler.phase2
Classes in org.ek9lang.compiler.phase2 that implement interfaces with type arguments of type IAggregateSymbolModifier and TypeClassDescription(package private) final class
Examines all the service operations on a service and looks at the verbs used and the uri proto paths.(package private) final class
Some aggregates like classes, components, etc.(package private) final class
Does a simple check (excluding any inheritance) for visibility rules on methods/operators on aggregates.Methods in org.ek9lang.compiler.phase2 with parameters of type IAggregateSymbolModifier and TypeMethodDescriptionvoid
NoDuplicatedServicePathsOrError.accept
(IAggregateSymbol service) void
SyntheticConstructorCreator.accept
(IAggregateSymbol aggregate) void
VisibilityOfOperationsOrError.accept
(IAggregateSymbol aggregate) -
Uses of IAggregateSymbol in org.ek9lang.compiler.phase3
Classes in org.ek9lang.compiler.phase3 that implement interfaces with type arguments of type IAggregateSymbolModifier and TypeClassDescription(package private) final class
Given a 'type' (the IAggregateSymbol passed in), see it would be possible to iterator over it with some other type.(package private) final class
Given an aggregate and a symbol, this predicate checks if the symbol is a property/field of that aggregate.(package private) final class
Used for resolving operation calls on aggregates, which can include properties that are delegates to functions.(package private) final class
Accesses the aggregate and gets just the 'default' operators defined on that aggregate (not any hierarchy).(package private) final class
Gets the abstract methods and then resolves each to see what the resulting method would be.Methods in org.ek9lang.compiler.phase3 that return IAggregateSymbolModifier and TypeMethodDescriptionStreamAggregateCheckData.aggregateSymbol()
Returns the value of theaggregateSymbol
record component.Methods in org.ek9lang.compiler.phase3 with parameters of type IAggregateSymbolModifier and TypeMethodDescriptionvoid
TraverseAbstractMethods.accept
(IAggregateSymbol aggregateSymbol, Consumer<MethodSymbol> actionToTake) GetIteratorType.apply
(IAggregateSymbol aggregate) OperationCallOrError.apply
(EK9Parser.OperationCallContext ctx, IAggregateSymbol aggregate) RetrieveDefaultedOperators.apply
(IAggregateSymbol aggregate) boolean
IsPropertyOfAggregate.test
(IAggregateSymbol aggregate, ISymbol possibleProperty) Constructors in org.ek9lang.compiler.phase3 with parameters of type IAggregateSymbolModifierConstructorDescription(package private)
StreamAggregateCheckData
(org.antlr.v4.runtime.Token errorLocation, IAggregateSymbol aggregateSymbol, ISymbol symbolType) Creates an instance of aStreamAggregateCheckData
record class. -
Uses of IAggregateSymbol in org.ek9lang.compiler.support
Classes in org.ek9lang.compiler.support that implement interfaces with type arguments of type IAggregateSymbolModifier and TypeClassDescription(package private) class
Deals with normal operators (i.e.final class
If the aggregate is a generic parameterised type this function triggers a check for duplicated methods.final class
Does a simple check (excluding any inheritance) for duplicated operations (methods, operators) on any sort of Aggregate, i.e.Fields in org.ek9lang.compiler.support with type parameters of type IAggregateSymbolModifier and TypeFieldDescription(package private) final Function
<IAggregateSymbol, String> CheckAndPopulateOperator.messageFor
Methods in org.ek9lang.compiler.support with parameters of type IAggregateSymbolModifier and TypeMethodDescriptionvoid
CheckForDuplicateOperationsOnGeneric.accept
(IToken errorLocationToken, IAggregateSymbol aggregate) void
NoDuplicateOperationsOrError.accept
(IToken errorLocationToken, IAggregateSymbol aggregate) void
AggregateManipulator.addAllSyntheticOperators
(IAggregateSymbol t) Add all possible synthetic operators to the aggregate.AggregateManipulator.addComparatorOperator
(IAggregateSymbol aggregateSymbol, String comparatorType, Optional<ISymbol> returnType) Adds a form of a comparison operator.void
AggregateManipulator.addComparatorOperator
(IAggregateSymbol aggregateSymbol, IAggregateSymbol arg0, String comparatorType, Optional<ISymbol> returnType) Adds a form of a comparison operator.AggregateManipulator.addConstructor
(IAggregateSymbol t) Create a new constructor for the aggregate with no params.void
AggregateManipulator.addConstructor
(IAggregateSymbol aggregateSymbol, List<ISymbol> constructorArguments, boolean synthetic, boolean markedPure) void
AggregateManipulator.addConstructorIfRequired
(IAggregateSymbol aggregateSymbol, List<ISymbol> constructorArguments, boolean synthetic) Add a new constructor if not present, marked as synthetic.boolean
OperationFactory.addMissingDefaultOperators
(EK9Parser.DefaultOperatorContext ctx, IAggregateSymbol aggregate) A bit of a beast this method.boolean
SymbolFactory.addMissingDefaultOperators
(EK9Parser.DefaultOperatorContext ctx, IAggregateSymbol aggregate) A bit of a beast this method.void
AggregateManipulator.addNonAbstractMethods
(IAggregateSymbol from, IAggregateSymbol to) Takes the 'from' aggregate obtains all the methods that are not abstract that have a return the type 'from' and adds them to the 'to' aggregate.void
AggregateManipulator.addPurePublicReturnSameTypeMethod
(IAggregateSymbol aggregate, String methodName) AggregateManipulator.addPurePublicSimpleOperator
(IAggregateSymbol aggregateSymbol, String methodName, Optional<ISymbol> returnType) Adds a simple operator, that is 'pure' (no side effects) and accepts no parameters, but just returns a value.void
AggregateManipulator.addSyntheticConstructorIfRequired
(IAggregateSymbol aggregateSymbol) Add a synthetic constructor, if a constructor is not present.void
AggregateManipulator.addSyntheticConstructorIfRequired
(IAggregateSymbol aggregateSymbol, List<ISymbol> constructorArguments) Add a synthetic constructor, if a constructor is not present.CheckAndPopulateOperator.apply
(EK9Parser.OperatorDeclarationContext ctx, IAggregateSymbol aggregate) AggregateManipulator.cloneMethodWithNewType
(MethodSymbol method, IAggregateSymbol to) AggregateManipulator.createMutatorOperator
(IAggregateSymbol aggregateSymbol, String operatorType) Create an operator of the name supplied.AggregateManipulator.createOperator
(IAggregateSymbol aggregateSymbol, String operatorType, boolean isPure) Create an operator of the name supplied.AggregateManipulator.createPureAcceptSameTypeOperatorAndReturnType
(IAggregateSymbol aggregateSymbol, String comparatorType, Optional<ISymbol> returnType) Creates a pure method with an argument the same as the main type.AggregateManipulator.createPureArgumentOperatorAndReturnType
(IAggregateSymbol aggregateSymbol, IAggregateSymbol arg0, String comparatorType, Optional<ISymbol> returnType) Creates a pure method with an argument of a different type as the main type.AggregateManipulator.createPurePublicReturnSameTypeMethod
(IAggregateSymbol aggregateSymbol, String methodName) AggregateManipulator.createPurePublicSimpleOperator
(IAggregateSymbol aggregateSymbol, String methodName, Optional<ISymbol> returnType) Just creates a public operator with the name specified.AggregateManipulator.createToJsonSimpleOperator
(IAggregateSymbol aggregateSymbol) Create operator for json.AggregateManipulator.getAllPossibleDefaultOperators
(IAggregateSymbol aggregate) Provides all the possible default operators.(package private) List
<MethodSymbol> OperatorFactory.getAllPossibleDefaultOperators
(IAggregateSymbol aggregate) (package private) List
<MethodSymbol> OperatorFactory.getAllPossibleSyntheticOperators
(IAggregateSymbol aggregate) AggregateManipulator.getDefaultOperator
(IAggregateSymbol aggregate, String operator) If the operator provided can be defaulted then a Method symbol with the correct signature will be returned.(package private) MethodSymbol
OperatorFactory.getDefaultOperator
(IAggregateSymbol aggregate, String operator) OperationFactory.newOperator
(EK9Parser.OperatorDeclarationContext ctx, IAggregateSymbol aggregate) Create a new aggregate that represents an EK9 operator, uses a method for this.SymbolFactory.newOperator
(EK9Parser.OperatorDeclarationContext ctx, IAggregateSymbol aggregate) Create a new aggregate that represents an EK9 operator, uses a method for this.void
AggregateManipulator.updateToConstrainBy
(IAggregateSymbol t, IAggregateSymbol constrainingType) This is the idea where a 'T' is constrained to only be a type or a subtype of that type. -
Uses of IAggregateSymbol in org.ek9lang.compiler.symbols
Classes in org.ek9lang.compiler.symbols that implement IAggregateSymbolModifier and TypeClassDescriptionclass
This is typically a 'class' or an interface type where it can include the definitions of new properties.class
An aggregate, but one that can have zero or more traits (like interfaces).class
Special type that is super of Aggregate and super of Function (if they don't have supers).Methods in org.ek9lang.compiler.symbols that return types with arguments of type IAggregateSymbolModifier and TypeMethodDescriptionAggregateWithTraitsSymbol.getAllowedExtenders()
AggregateSymbol.getSubAggregateSymbols()
default List
<IAggregateSymbol> IAggregateSymbol.getSubAggregateSymbols()
To get a full hierarchy you will need to get these subclasses and then get the subclasses of those.AggregateSymbol.getSuperAggregate()
default Optional
<IAggregateSymbol> IAggregateSymbol.getSuperAggregate()
AggregateWithTraitsSymbol.getTraits()
Get the traits that this aggregates implements.default List
<IAggregateSymbol> IAggregateSymbol.getTraits()
Methods in org.ek9lang.compiler.symbols with parameters of type IAggregateSymbolModifier and TypeMethodDescriptionvoid
AggregateWithTraitsSymbol.addAllowedExtender
(IAggregateSymbol extenderSymbol) For use with constraining types to be limited to a declared set.void
AggregateSymbol.addSubAggregateSymbol
(IAggregateSymbol sub) We note down any subtypes this type is used with.default void
IAggregateSymbol.addSubAggregateSymbol
(IAggregateSymbol sub) used to add back pointers to subclasses.boolean
AggregateSymbol.hasImmediateSuper
(IAggregateSymbol theSuper) boolean
AggregateWithTraitsSymbol.hasImmediateTrait
(IAggregateSymbol trait) Does this aggregate have the trait passed in as an immediate trait.boolean
AggregateWithTraitsSymbol.isAllowingExtensionBy
(IAggregateSymbol extenderSymbol) Is the extender allowed to implement this aggregate (normally a trait).boolean
AggregateSymbol.isImplementingInSomeWay
(IAggregateSymbol aggregate) boolean
AggregateWithTraitsSymbol.isImplementingInSomeWay
(IAggregateSymbol traitSymbol) default boolean
IAggregateSymbol.isImplementingInSomeWay
(IAggregateSymbol aggregate) Only really used by aggregates that can have one or more traits.boolean
AggregateSymbol.isInAggregateHierarchy
(IAggregateSymbol theAggregateToCheck) Does the aggregate passed in exist in this type hierarchy.boolean
IAggregateSymbol.isInAggregateHierarchy
(IAggregateSymbol theAggregateToCheck) void
AggregateSymbol.setSuperAggregate
(IAggregateSymbol baseSymbol) default void
IAggregateSymbol.setSuperAggregate
(IAggregateSymbol superAggregateSymbol) Method parameters in org.ek9lang.compiler.symbols with type arguments of type IAggregateSymbolModifier and TypeMethodDescriptionvoid
AggregateSymbol.setSuperAggregate
(Optional<IAggregateSymbol> superAggregate) Set the 'super' of this type.default void
IAggregateSymbol.setSuperAggregate
(Optional<IAggregateSymbol> superAggregate)