1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/** ** \file type/attribute.cc ** \brief Implementation for type/attribute.hh. */ #include <ostream> #include <type/attribute.hh> namespace type { Attribute::Attribute(const ast::VarDec* def) : def_(def) {} } // namespace type