FieldNode represents a class field
| 38 | |
| 39 | // FieldNode represents a class field |
| 40 | type FieldNode struct { |
| 41 | Name string |
| 42 | Type string |
| 43 | } |
| 44 | |
| 45 | // ParseJavaFile parses a Java file into a structured representation |
| 46 | // This is a hand-written recursive descent parser simplified for structure extraction |
nothing calls this directly
no outgoing calls
no test coverage detected