def checkOverflowNeed( node ):
    visitor = _OverflowCheckVisitor()

    TreeOperations.visitScope( node, visitor )

    return visitor.getResult()