Closed Luna-Klatzer closed 3 months ago
Attention: Patch coverage is 82.75862%
with 40 lines
in your changes missing coverage. Please review.
Project coverage is 82.78%. Comparing base (
dc1ff5f
) to head (62bd081
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
What type of change does this PR perform?
Summary
Implemented
Array<T>
type and constant array initialisation expression syntax.Closes #499
Detailed Changelog
Not present for website/docs changes
Added
Array<T>
type and single-type array initializers. (#499)GenericArgumentTypeError
, which is thrown when a generic argument is used with an invalid type. This is an error indicating an invalid logic that should be fixed.InvalidAmountOfGenericArgumentsError
, which is thrown when an invalid amount of generic arguments is used. This is an error indicating an invalid logic that should be fixed.CanNotUseNonGenericAsGenericTypeError
, which is thrown when a non-generic type is used as a generic type. This is an error indicating an invalid logic that should be fixed.KipperTypeChecker.validArrayExpression
, which ensures that an array expression is valid.Does this PR create new warnings?
None.
Linked issues or PRs