Interface BackendCompiler
-
- All Known Implementing Classes:
GlobalShadowCheckBackendCompiler
,JavaClassBackendCompiler
@ConsumerType public interface BackendCompiler
A
BackendCompiler
can be hooked in into theSightlyCompiler
in order to transpile HTLCommand
s into other JVM supported languages. The transpilation can be performed with the help of specificCommandVisitor
implementations that are attached to theCommand
s from theCommandStream
.For more details see
SightlyCompiler.compile(CompilationUnit, BackendCompiler)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(CommandStream stream)
Process a stream of commands
-
-
-
Method Detail
-
handle
void handle(CommandStream stream)
Process a stream of commands- Parameters:
stream
- the stream of commands
-
-