raphw / byte-buddy

Runtime code generation for the Java virtual machine.
https://bytebuddy.net
Apache License 2.0
6.23k stars 804 forks source link

Fix issue with lazy simple name resolution with valid leading characters #1599

Closed manuel-alvarez-alvarez closed 7 months ago

manuel-alvarez-alvarez commented 7 months ago

What does this PR do

Fixes lazy resolution of simple names when the first character of the class is valid and not a letter.

Motivation

Java identifiers can start with a letter, $ or _ according to the spec

Links

https://github.com/DataDog/dd-trace-java/issues/6723