/// <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); }
public void VisitBoolValueNode(BoolValueNode node) { node.EvaluationType = TokenType.BOOLEAN_VAL; }