aws / aws-lambda-snapstart-java-rules

Apache License 2.0
50 stars 7 forks source link

feat: Visit parents of Lambda classes to catch potential inherited random generators #23

Closed mbfreder closed 1 year ago

mbfreder commented 1 year ago

Issue #, if available: Issue #18

Description of changes:

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

mbfreder commented 1 year ago

The approach in this PR does not cover cases for multiple level inheritance. We made the decision to only cover lambda handlers direct parent classes for now, while we investigate how we can cover multiple levels inheritance.

mbfreder commented 1 year ago

Update: added changes to cover multi-level inheritance.