Home | History | Annotate | Download | only in syntax

Lines Matching refs:node

20 import com.google.clearsilver.jsilver.syntax.node.AAltCommand;
21 import com.google.clearsilver.jsilver.syntax.node.ACallCommand;
22 import com.google.clearsilver.jsilver.syntax.node.ADataCommand;
23 import com.google.clearsilver.jsilver.syntax.node.ADefCommand;
24 import com.google.clearsilver.jsilver.syntax.node.AEachCommand;
25 import com.google.clearsilver.jsilver.syntax.node.AEvarCommand;
26 import com.google.clearsilver.jsilver.syntax.node.AHardIncludeCommand;
27 import com.google.clearsilver.jsilver.syntax.node.AHardLincludeCommand;
28 import com.google.clearsilver.jsilver.syntax.node.AIfCommand;
29 import com.google.clearsilver.jsilver.syntax.node.AIncludeCommand;
30 import com.google.clearsilver.jsilver.syntax.node.ALincludeCommand;
31 import com.google.clearsilver.jsilver.syntax.node.ALoopCommand;
32 import com.google.clearsilver.jsilver.syntax.node.ALoopIncCommand;
33 import com.google.clearsilver.jsilver.syntax.node.ALoopToCommand;
34 import com.google.clearsilver.jsilver.syntax.node.ALvarCommand;
35 import com.google.clearsilver.jsilver.syntax.node.ANameCommand;
36 import com.google.clearsilver.jsilver.syntax.node.AUvarCommand;
37 import com.google.clearsilver.jsilver.syntax.node.AVarCommand;
38 import com.google.clearsilver.jsilver.syntax.node.AWithCommand;
39 import com.google.clearsilver.jsilver.syntax.node.EOF;
40 import com.google.clearsilver.jsilver.syntax.node.TData;
64 * datas list, replacing all but the last node with no-ops.
75 data.replaceBy(null); // removes the node
106 public void caseADataCommand(ADataCommand node) {
111 datas.add(node);
118 public void inAVarCommand(AVarCommand node) {
123 public void inALvarCommand(ALvarCommand node) {
128 public void inAUvarCommand(AUvarCommand node) {
133 public void inAEvarCommand(AEvarCommand node) {
138 public void inANameCommand(ANameCommand node) {
145 public void inALoopCommand(ALoopCommand node) {
150 public void inALoopIncCommand(ALoopIncCommand node) {
155 public void inALoopToCommand(ALoopToCommand node) {
160 public void inAEachCommand(AEachCommand node) {
165 public void inAWithCommand(AWithCommand node) {
170 public void outALoopCommand(ALoopCommand node) {
175 public void outALoopIncCommand(ALoopIncCommand node) {
180 public void outALoopToCommand(ALoopToCommand node) {
185 public void outAEachCommand(AEachCommand node) {
190 public void outAWithCommand(AWithCommand node) {
200 public void caseADefCommand(ADefCommand node) {
202 node.getCommand().apply(consolidator);
209 public void inACallCommand(ACallCommand node) {
216 public void caseAIfCommand(AIfCommand node) {
217 if (node.getBlock() != null) {
219 node.getBlock().apply(this);
222 if (node.getOtherwise() != null) {
224 node.getOtherwise().apply(this);
232 public void inAAltCommand(AAltCommand node) {
237 public void outAAltCommand(AAltCommand node) {
244 public void caseAIncludeCommand(AIncludeCommand node) {
249 public void caseAHardIncludeCommand(AHardIncludeCommand node) {
254 public void caseALincludeCommand(ALincludeCommand node) {
259 public void caseAHardLincludeCommand(AHardLincludeCommand node) {
266 public void caseEOF(EOF node) {