Rule BinExpr_3

BinExpr Expr AND Expr 


XML Serialization Annotation

This rule has the following XML serialization annotation:
  [
    nsprefix	= "hex"
    localname	= "BinaryBooleanExpression"
    attributes	= { 
                    op = 2/symbol
                  }
    children	= ( 
                    1
                    3
                  )
  ]
This means that a BinExpr derived through this rule will be serialized thus:

<hex:BinaryBooleanExpression op = A0>
XML serialization of the 1st RHS symbol (Expr)
XML serialization of the 3rd RHS symbol (Expr)
</hex:BinaryBooleanExpression>
Legend of attribute values for hex:BinaryBooleanExpression:
  • A0 is the value of attribute "symbol" of the 2nd RHS symbol (AND)


Description

A BinExpr is an Expr followed by the binary operator AND followed by an Expr.


Copyright © 2012 by Hassan Aït-Kaci; All Rights Reserved.