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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
"""
The ``cpp_nesting`` test project.
"""
from testing.hierarchies import clike, directory, file, namespace, typedef, union
def default_class_hierarchy_dict():
"""Return the default class hierarchy dictionary."""
return {
clike("struct", "top_level"): {},
namespace("special"): {
clike("struct", "Normal"): {
clike("struct", "Nested"): {
clike("struct", "Like"): {
clike("struct", "Usual"): {}
}
}
},
clike("struct", "Image", template=["int width", "int height"]): {},
clike("class", "ImageBuffer", template=[
"class TImage", "typename Tdata_t", "int Tchannels"]): {
clike("struct", "Data"): {},
clike("struct", "SomeThing", template=["int Tnested"]): {}
},
clike("class", "ImageBuffer< TImage, Tdata_t, 4 >", template=[
"class TImage", "typename Tdata_t"]): {
clike("struct", "Data"): {},
clike("struct", "SomeThing"): {}
},
clike("class", "ImageBuffer< Image< 1920, 1080 >, float, 128 >"): {
clike("struct", "Data"): {},
clike("struct", "SomeThing"): {}
},
clike("struct", "Base", template=["size_t N"]): {
clike("struct", "A"): {}
},
clike("struct", "Base< 2 >", template=["2"]): {
clike("struct", "InnerStruct"): {},
clike("struct", "AnotherNestedStruct"): {},
clike("struct", "InnerTemplatedStruct", template=[
"size_t M", "typename no_use_this = void"]): {},
clike("struct", "InnerTemplatedStruct< 4, dont_use_this >", template=[
"typename dont_use_this"]): {}
},
namespace("unique"): {
namespace("snowflake"): {
clike("struct", "Ontology", template=["auto Epoch"]): {},
clike("struct", "Ontology< 11 >", template=["11"]): {},
},
clike("struct", "Nonsense", template=["int X", "class T"]): {},
clike("struct", "Nonsense< X, snowflake::Ontology< X > >",
template=["int X"]): {},
clike("struct", "Nonsense< 11, snowflake::Ontology< 11 > >"): {},
typedef("PartialNonsense", "Nonsense< X, snowflake::Ontology< X > >",
template=["int X"]): {},
typedef("FullNonsense", "Nonsense< 11, snowflake::Ontology< 11 > >"): {}
},
namespace("complex"): {
clike("struct", "Fold", template=["typename... Ts"]): {},
typedef("void_t", "void", template=["class..."]): {},
clike("struct", "has_type_member",
template=["class", "class=void"]): {},
clike("struct", "has_type_member< T, void_t< typename T::type > >",
template=["class T"]): {},
clike("struct", "IntPtr", template=["const int* I"]): {},
clike("struct", "IntRef", template=["const int& I"]): {}
}
},
namespace("nested"): {
clike("struct", "one"): {
clike("struct", "params"): {
union("four_bytes"): {}
}
},
clike("struct", "two"): {
clike("struct", "params"): {
union("four_bytes"): {}
}
},
union("four_bytes"): {},
namespace("dual_nested"): {
clike("struct", "one"): {
clike("struct", "params"): {
union("four_bytes"): {}
}
},
clike("struct", "two"): {
clike("struct", "params"): {
union("four_bytes"): {}
}
}
}
}
}
def default_file_hierarchy_dict():
"""Return the default file hierarchy dictionary."""
return {
directory("include"): {
file("top_level.hpp"): {
clike("struct", "top_level"): {}
},
file("nesting_specializations.hpp"): {
namespace("special"): {
clike("struct", "Normal"): {
clike("struct", "Nested"): {
clike("struct", "Like"): {
clike("struct", "Usual"): {}
}
}
},
clike("struct", "Image", template=["int width", "int height"]): {},
clike("class", "ImageBuffer", template=[
"class TImage", "typename Tdata_t", "int Tchannels"]): {
clike("struct", "Data"): {},
clike("struct", "SomeThing", template=["int Tnested"]): {}
},
clike("class", "ImageBuffer< TImage, Tdata_t, 4 >", template=[
"class TImage", "typename Tdata_t"]): {
clike("struct", "Data"): {},
clike("struct", "SomeThing"): {}
},
clike("class", "ImageBuffer< Image< 1920, 1080 >, float, 128 >"): {
clike("struct", "Data"): {},
clike("struct", "SomeThing"): {}
},
clike("struct", "Base", template=["size_t N"]): {
clike("struct", "A"): {}
},
clike("struct", "Base< 2 >", template=["2"]): {
clike("struct", "InnerStruct"): {},
clike("struct", "AnotherNestedStruct"): {},
clike("struct", "InnerTemplatedStruct", template=[
"size_t M", "typename no_use_this = void"]): {},
clike("struct", "InnerTemplatedStruct< 4, dont_use_this >", template=[
"typename dont_use_this"]): {}
},
namespace("unique"): {
namespace("snowflake"): {
clike("struct", "Ontology", template=["auto Epoch"]): {},
clike("struct", "Ontology< 11 >", template=["11"]): {},
},
clike("struct", "Nonsense", template=["int X", "class T"]): {},
clike("struct", "Nonsense< X, snowflake::Ontology< X > >",
template=["int X"]): {},
clike("struct", "Nonsense< 11, snowflake::Ontology< 11 > >"): {},
typedef("PartialNonsense",
"Nonsense< X, snowflake::Ontology< X > >",
template=["int X"]): {},
typedef("FullNonsense",
"Nonsense< 11, snowflake::Ontology< 11 > >"): {}
},
namespace("complex"): {
clike("struct", "Fold", template=["typename... Ts"]): {},
typedef("void_t", "void", template=["class..."]): {},
clike("struct", "has_type_member",
template=["class", "class=void"]): {},
clike("struct", "has_type_member< T, void_t< typename T::type > >",
template=["class T"]): {},
clike("struct", "IntPtr", template=["const int* I"]): {},
clike("struct", "IntRef", template=["const int& I"]): {}
}
}
},
directory("nested"): {
directory("one"): {
file("one.hpp"): {
namespace("nested"): {
clike("struct", "one"): {
clike("struct", "params"): {
union("four_bytes"): {}
}
}
}
},
},
directory("two"): {
file("two.hpp"): {
namespace("nested"): {
clike("struct", "two"): {
clike("struct", "params"): {
union("four_bytes"): {}
}
},
union("four_bytes"): {}
}
}
},
directory("dual_nested"): {
directory("one"): {
file("one.hpp"): {
namespace("nested"): {
namespace("dual_nested"): {
clike("struct", "one"): {
clike("struct", "params"): {
union("four_bytes"): {}
}
}
}
}
}
},
directory("two"): {
file("two.hpp"): {
namespace("nested"): {
namespace("dual_nested"): {
clike("struct", "two"): {
clike("struct", "params"): {
union("four_bytes"): {}
}
}
}
}
}
}
}
}
}
}
|