Changeset b5978ca for src/AST


Ignore:
Timestamp:
Mar 24, 2025, 2:04:44 PM (4 weeks ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
d73e667
Parents:
f5bf3c2
Message:

Moved a reasonably large function out of a header.

Location:
src/AST
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/AST/Type.cpp

    rf5bf3c2 rb5978ca  
    167167bool TypeInstType::isComplete() const { return base->sized; }
    168168
     169static std::string toTypeString( int usage, int id, std::string const & name ) {
     170        return "_" + std::to_string( usage ) + "_" + std::to_string( id ) + "_" + name;
     171}
     172
     173std::string TypeInstType::typeString() const {
     174        return ( 0 < formal_usage ) ? toTypeString( formal_usage, expr_id, name ) : name;
     175}
     176
    169177std::string TypeEnvKey::typeString() const {
    170         return std::string("_") + std::to_string(formal_usage)
    171                 + "_" + std::to_string(expr_id) + "_" + base->name;
     178        return toTypeString( formal_usage, expr_id, base->name );
    172179}
    173180
  • TabularUnified src/AST/Type.hpp

    rf5bf3c2 rb5978ca  
    383383        const Type * accept( Visitor & v ) const override { return v.visit( this ); }
    384384
    385         std::string typeString() const {
    386                 if (formal_usage > 0) return std::string("_") + std::to_string(formal_usage) + "_" + std::to_string(expr_id) + "_" + name;
    387                 else return name;
    388         }
     385        std::string typeString() const;
    389386private:
    390387        TypeInstType * clone() const override { return new TypeInstType{ *this }; }
Note: See TracChangeset for help on using the changeset viewer.