Package io.github.protasm.jvmud.compiler.parser.ast.visitor
package io.github.protasm.jvmud.compiler.parser.ast.visitor
Visitor-style utilities that operate over the LPC AST.
The current visitor surface provides shared traversal dispatch and debug-oriented tree printing. Core compiler behavior now lives in named pipeline stages such as semantic analysis and IR lowering rather than in broad visitor passes.
Visitors should remain small support utilities. Language validation belongs to
semantic; backend translation belongs to ir and bytecode.