@@ -14,6 +14,9 @@ def EnumDeclarationsFolder():
14
14
def EmptyDeclarationFolder ():
15
15
return os .path .join (ToplevelFolder (), "dcl.dcl" , "empty_declaration" )
16
16
17
+ def NamespaceDefinitionsFolder ():
18
+ return os .path .join (ToplevelFolder (), "namespace.def" )
19
+
17
20
18
21
def GenerateEnumDeclarations ():
19
22
#https://eel.is/c++draft/enum
@@ -34,6 +37,17 @@ def GenerateEnumDeclarations():
34
37
return declarations
35
38
36
39
40
+ def GenerateNamespaceDefinitions ():
41
+ #https://eel.is/c++draft/namespace.def
42
+ optional_content = "(class SampleClass \{\}; int SampleObject = 0; template<class T, auto V, template<class> class Templ> class SampleClassTemplate \{\};)?"
43
+ named_namespace_definition = f"(inline )?namespace ParseMeIfYouCan \{{ { optional_content } \}}"
44
+ unnamed_namespace_definition = f"(inline )?namespace \{{ { optional_content } \}}"
45
+ nested_namespace_definition = f"namespace Level_2::( inline )?Level_1::( inline )?Level_0 \{{ { optional_content } \}}"
46
+ regex = f"({ named_namespace_definition } |{ unnamed_namespace_definition } |{ nested_namespace_definition } )"
47
+ generator = exrex .generate (regex )
48
+ return generator
49
+
50
+
37
51
def GenerateIndexedCppFiles (parentDirectory , fileContents ):
38
52
os .makedirs (parentDirectory , exist_ok = True )
39
53
for index , aDeclaration in enumerate (fileContents ):
@@ -46,3 +60,4 @@ def GenerateIndexedCppFiles(parentDirectory, fileContents):
46
60
GenerateIndexedCppFiles (EnumDeclarationsFolder (), GenerateEnumDeclarations ())
47
61
#https://eel.is/c++draft/dcl.dcl#nt:empty-declaration
48
62
GenerateIndexedCppFiles (EmptyDeclarationFolder (), [";" ])
63
+ GenerateIndexedCppFiles (NamespaceDefinitionsFolder (), GenerateNamespaceDefinitions ())
0 commit comments