/** ** \file desugar/bounds-checking-visitor.cc ** \brief Implementation of desugar::BoundsCheckingVisitor. */ #include #include #include #include #include namespace desugar { namespace { /// Return the name of the boxed type for \a s. std::string box(misc::symbol s) { return "_box_" + s.get(); } } // namespace BoundsCheckingVisitor::BoundsCheckingVisitor() : super_type() {} /*-----------------------. | Array bounds checking. | `-----------------------*/ // FIXME: Some code was deleted here. } // namespace desugar