Example #1
0
 public override void Visit(AmlParser.DefLAnd defLAnd)
 {
     defLAnd.rightOperand.Accept(this);
     defLAnd.leftOperand.Accept(this);
     result.Add(new LogicalOp(LogicalOp.Op.And));
 }
Example #2
0
 public virtual void Visit(AmlParser.DefLAnd defLAnd)
 {
     UnhandledNodeType("DefLAnd");
 }