Skip to content

Commit 084b5d1

Browse files
Ukilelevinniefalco
authored andcommitted
Generate namespace definitions
1 parent f380643 commit 084b5d1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tools/generate.py

+15
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ def EnumDeclarationsFolder():
1414
def EmptyDeclarationFolder():
1515
return os.path.join(ToplevelFolder(), "dcl.dcl", "empty_declaration")
1616

17+
def NamespaceDefinitionsFolder():
18+
return os.path.join(ToplevelFolder(), "namespace.def")
19+
1720

1821
def GenerateEnumDeclarations():
1922
#https://eel.is/c++draft/enum
@@ -34,6 +37,17 @@ def GenerateEnumDeclarations():
3437
return declarations
3538

3639

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+
3751
def GenerateIndexedCppFiles(parentDirectory, fileContents):
3852
os.makedirs(parentDirectory, exist_ok=True)
3953
for index, aDeclaration in enumerate(fileContents):
@@ -46,3 +60,4 @@ def GenerateIndexedCppFiles(parentDirectory, fileContents):
4660
GenerateIndexedCppFiles(EnumDeclarationsFolder(), GenerateEnumDeclarations())
4761
#https://eel.is/c++draft/dcl.dcl#nt:empty-declaration
4862
GenerateIndexedCppFiles(EmptyDeclarationFolder(), [";"])
63+
GenerateIndexedCppFiles(NamespaceDefinitionsFolder(), GenerateNamespaceDefinitions())

0 commit comments

Comments
 (0)