Uses of Class
jcaas.script_nodes.LogicalExpression

Packages that use LogicalExpression
jcaas.script_nodes   
 

Uses of LogicalExpression in jcaas.script_nodes
 

Constructors in jcaas.script_nodes with parameters of type LogicalExpression
IfStatement(LogicalExpression exp, Statement l1)
          Constructor for the rule if_stmt ::= ( logical_exp ) { stmt_list }
IfStatement(LogicalExpression exp, Statement l1, Statement l2)
          Constructor for te rule if_stmt ::= ( logical_exp ) { stmt_list } else { stmt_list }.
LogicalExpression(LogicalExpression exp, LogicalTerm term)
          Constructor for when logical_exp ::= logical_exp || logical_term.
LogicalFactor(LogicalExpression exp)
          Constructor for when logical_factor ::= ( logical_exp ).
Procedure(Statement list, LogicalExpression exp)
          Constructor for the rule procedure ::= [ logical_exp ] { stmt_list }
WhileLoop(LogicalExpression exp, Statement list)
          Constructor for the rule while_stmt ::= ( logical_exp ) { stmt_list }.