Uses of Interface
org.apache.sling.scripting.sightly.compiler.commands.CommandVisitor
Packages that use CommandVisitor
Package
Description
The
org.apache.sling.scripting.sightly.compiler.commands
package defines the API for
Command
processing.-
Uses of CommandVisitor in org.apache.sling.scripting.sightly.compiler.commands
Classes in org.apache.sling.scripting.sightly.compiler.commands that implement CommandVisitorModifier and TypeClassDescriptionclass
This class can be extended byCommandVisitor
implementations that don't provide support for all the availableCommand
s.final class
ThisCommandVisitor
allows storing states forCommand
evaluation.Methods in org.apache.sling.scripting.sightly.compiler.commands that return CommandVisitorModifier and TypeMethodDescriptionStatefulVisitor.StateControl.pop()
StatefulVisitor.StateControl.replace
(CommandVisitor visitor) Methods in org.apache.sling.scripting.sightly.compiler.commands with parameters of type CommandVisitorModifier and TypeMethodDescriptionvoid
Command.accept
(CommandVisitor visitor) Accept a visitor.void
Conditional.End.accept
(CommandVisitor visitor) void
Conditional.Start.accept
(CommandVisitor visitor) void
Loop.End.accept
(CommandVisitor visitor) void
Loop.Start.accept
(CommandVisitor visitor) void
OutputVariable.accept
(CommandVisitor visitor) void
OutText.accept
(CommandVisitor visitor) void
Procedure.Call.accept
(CommandVisitor visitor) void
Procedure.End.accept
(CommandVisitor visitor) void
Procedure.Start.accept
(CommandVisitor visitor) void
VariableBinding.End.accept
(CommandVisitor visitor) void
VariableBinding.Global.accept
(CommandVisitor visitor) void
VariableBinding.Start.accept
(CommandVisitor visitor) void
StatefulVisitor.initializeWith
(CommandVisitor initialState) void
StatefulVisitor.StateControl.push
(CommandVisitor visitor) StatefulVisitor.StateControl.replace
(CommandVisitor visitor) -
Uses of CommandVisitor in org.apache.sling.scripting.sightly.impl.compiler.debug
Classes in org.apache.sling.scripting.sightly.impl.compiler.debug that implement CommandVisitorModifier and TypeClassDescriptionfinal class
A visitor which checks a stream for correct closing of things -
Uses of CommandVisitor in org.apache.sling.scripting.sightly.impl.compiler.optimization
Classes in org.apache.sling.scripting.sightly.impl.compiler.optimization that implement CommandVisitorModifier and TypeClassDescriptionclass
Extracts the variables used in a commandclass
Removes code under conditionals which are proven to fail.final class
This optimization handles variables initialized to map literals.final class
This optimization removes variables which are bound but never used in the command stream. -
Uses of CommandVisitor in org.apache.sling.scripting.sightly.impl.compiler.optimization.reduce
Classes in org.apache.sling.scripting.sightly.impl.compiler.optimization.reduce that implement CommandVisitorModifier and TypeClassDescriptionfinal class
Optimization which evaluates constant expressions during compilation-time -
Uses of CommandVisitor in org.apache.sling.scripting.sightly.impl.compiler.util.stream
Subinterfaces of CommandVisitor in org.apache.sling.scripting.sightly.impl.compiler.util.streamModifier and TypeInterfaceDescriptioninterface
Command visitor which writes to an output stream.Methods in org.apache.sling.scripting.sightly.impl.compiler.util.stream with parameters of type CommandVisitorModifier and TypeMethodDescriptionstatic void
Streams.connect
(CommandStream inStream, PushStream outStream, CommandVisitor visitor) Attach the visitor as a handle to the inStream and propagate the done signal from the inStream to the outStreamConstructors in org.apache.sling.scripting.sightly.impl.compiler.util.stream with parameters of type CommandVisitor -
Uses of CommandVisitor in org.apache.sling.scripting.sightly.impl.compiler.visitor
Classes in org.apache.sling.scripting.sightly.impl.compiler.visitor that implement CommandVisitorModifier and TypeClassDescriptionclass
Ignore a nested range of commands.class
Variant ofIgnoreRange
to be used in stateful visitors.class
Command visitor which tracks variables in commands.class
Abstract visitor that allows to skip processing some commands.