You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there is a single entity to represent all type parameters: FASTJavaTypeParameterExpression.
However, the same type parameter expression is not always applicable on both behavioral entities (classes and methods) and variables.
The ones applied to behaviorals can define an upper bound, which is how the current entity works:
// on classclassMyClass<TextendsObject> {} // OK// on method
<TextendsObject> voidf() {} // OK// on variableMyClass<TextendsObject> obj; // NOK
The text was updated successfully, but these errors were encountered:
Currently there is a single entity to represent all type parameters:
FASTJavaTypeParameterExpression
.However, the same type parameter expression is not always applicable on both behavioral entities (classes and methods) and variables.
The ones applied to behaviorals can define an upper bound, which is how the current entity works:
The text was updated successfully, but these errors were encountered: