| 23 | package pascal.taie.language.annotation; |
| 24 | |
| 25 | public record EnumElement( |
| 26 | // string representation of the enum type |
| 27 | String type, |
| 28 | // name of the enum constant |
| 29 | String name) |
| 30 | implements Element { |
| 31 | |
| 32 | @Override |
| 33 | public String toString() { |
| 34 | return type + "." + name; |
| 35 | } |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected