-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Issue #94 and progress on Issue #91 Major refactor of language context to drive filter options from configuration. The ability to modify things like stropping and encoding were fundamentally broken before this change. This work was done in support of adding named types as a concept to languages. This will allow generation of serialization code that is more configurable and will avoid fixing decisions like the use of size_t into templates instead moving these decisions into user-overridable configuration. * updates per PR review comments
- Loading branch information
1 parent
87daa4c
commit 42eb7cd
Showing
38 changed files
with
1,450 additions
and
788 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
|
||
**/nunavut_out/* | ||
**/nunavut_out/* | ||
**/compile_commands.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Mac", | ||
"intelliSenseMode": "clang-x64", | ||
"includePath": [ | ||
"${workspaceFolder}/submodules/googletest/googlemock/include", | ||
"${workspaceFolder}/verification/cpp/build/generated", | ||
"${workspaceFolder}/verification/cpp/include" | ||
], | ||
"browse": { | ||
"path": [ | ||
"${workspaceFolder}/verification/cpp/test" | ||
], | ||
"limitSymbolsToIncludedHeaders": false | ||
}, | ||
"macFrameworkPath": [ | ||
"/System/Library/Frameworks", | ||
"/Library/Frameworks" | ||
], | ||
"compileCommands": "${workspaceFolder}/.vscode/compile_commands.json", | ||
"configurationProvider": "ms-vscode.cmake-tools", | ||
"cStandard": "c11", | ||
"cppStandard": "c++11" | ||
}, | ||
{ | ||
"name": "Linux", | ||
"intelliSenseMode": "gcc-x64", | ||
"includePath": [ | ||
"${workspaceFolder}/submodules/googletest/googlemock/include", | ||
"${workspaceFolder}/verification/cpp/build/generated", | ||
"${workspaceFolder}/verification/cpp/include" | ||
], | ||
"browse": { | ||
"path": [ | ||
"${workspaceFolder}/verification/cpp/test" | ||
], | ||
"limitSymbolsToIncludedHeaders": false | ||
}, | ||
"compileCommands": "${workspaceFolder}/.vscode/compile_commands.json", | ||
"configurationProvider": "ms-vscode.cmake-tools" | ||
} | ||
], | ||
"version": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[ | ||
{ | ||
"name": "native-gcc", | ||
"toolchainFile": "${workspaceFolder}/verification/cpp/cmake/toolchains/gcc-native.cmake", | ||
"cmakeSettings": { | ||
"NUNAVUT_FLAG_SET": "../cmake/compiler_flag_sets/native.cmake" | ||
} | ||
}, | ||
{ | ||
"name": "native-clang", | ||
"toolchainFile": "${workspaceFolder}/verification/cpp/cmake/toolchains/clang-native.cmake", | ||
"cmakeSettings": { | ||
"NUNAVUT_FLAG_SET": "../cmake/compiler_flag_sets/native.cmake" | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
nunavut.lang.cpp package | ||
======================== | ||
|
||
Subpackages | ||
----------- | ||
|
||
.. toctree:: | ||
|
||
nunavut.lang.cpp.templates | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: nunavut.lang.cpp | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
nunavut.lang.cpp.templates package | ||
================================== | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: nunavut.lang.cpp.templates | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This file provided for readthedocs.io only. Use tox.ini for all dependencies. | ||
|
||
sphinx >= 1.8.5 | ||
sphinx-argparse | ||
sphinx_rtd_theme |
Oops, something went wrong.