Exemplo n.º 1
0
 /// <summary>
 /// Checks the static semantic constraints of a BoolValueNode.
 /// </summary>
 /// <returns>An void.</returns>
 /// <param name="node">Node.</param>
 public void VisitBoolValueNode(BoolValueNode node)
 {
     // This is not a statement so it needs not to be actually checked here.
     // So, we pass it to the TypeCheckerVisitor instead.
     node.Accept(this.typeChecker);
 }
Exemplo n.º 2
0
 public void VisitBoolValueNode(BoolValueNode node)
 {
     node.EvaluationType = TokenType.BOOLEAN_VAL;
 }