blob: e524395846dd3a22a76ccccebe7a61773b877a9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/*
*/
#include <hir/path.hpp>
#include <hir/type.hpp>
::HIR::SimplePath HIR::SimplePath::operator+(const ::std::string& s) const
{
::HIR::SimplePath ret(m_crate_name);
ret.m_components = m_components;
ret.m_components.push_back( s );
return ret;
}
namespace HIR {
::std::ostream& operator<<(::std::ostream& os, const ::HIR::SimplePath& x)
{
if( x.m_crate_name != "" ) {
os << "::\"" << x.m_crate_name << "\"";
}
else if( x.m_components.size() == 0 ) {
os << "::";
}
else {
}
for(const auto& n : x.m_components)
{
os << "::" << n;
}
return os;
}
}
::HIR::PathParams::PathParams()
{
}
::HIR::GenericPath::GenericPath()
{
}
::HIR::GenericPath::GenericPath(::HIR::SimplePath sp):
m_path( mv$(sp) )
{
}
::HIR::GenericPath::GenericPath(::HIR::SimplePath sp, ::HIR::PathParams params):
m_path( mv$(sp) ),
m_params( mv$(params) )
{
}
::HIR::Path::Path(::HIR::GenericPath gp):
m_data( ::HIR::Path::Data::make_Generic( mv$(gp) ) )
{
}
::HIR::Path::Path(::HIR::TypeRefPtr type, ::HIR::GenericPath trait, ::std::string item, ::HIR::PathParams params):
m_data( ::HIR::Path::Data::make_UfcsKnown({
mv$(type), mv$(trait), mv$(item), mv$(params)
}) )
{
}
::HIR::Path::Path(::HIR::SimplePath sp):
m_data( ::HIR::Path::Data::make_Generic(::HIR::GenericPath(mv$(sp))) )
{
}
|