Exemple #1
0
 public static RuleExpression Rule(EqualExpression head, Expression body)
 {
     return(new RuleExpression(head, body));
 }
Exemple #2
0
 internal RuleExpression(EqualExpression head, Expression body)
 {
     m_head = head;
     m_body = body;
 }