1 28 29 package com.caucho.es.parser; 30 31 import java.io.IOException ; 32 33 36 class BooleanExpr extends Expr { 37 Expr child; 38 39 BooleanExpr(Block block, Expr child) 40 { 41 super(block); 42 43 this.child = child; 44 } 45 46 int getType() 47 { 48 return child.getType(); 49 } 50 51 void print() throws IOException  52 { 53 child.printBoolean(); 54 } 55 } 56 | Popular Tags |