Skip to content

Commit

Permalink
feat: Lua integration
Browse files Browse the repository at this point in the history
  • Loading branch information
vinniefalco committed Jun 27, 2023
1 parent 0ce939f commit 940033e
Show file tree
Hide file tree
Showing 81 changed files with 32,637 additions and 486 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ if (WIN32)
/permissive- # strict C++
/W4 # enable all warnings
/MP # multi-processor compilation
/EHsc # C++ Exception handling
/EHs # C++ Exception handling
)
endif()
endif ()
Expand Down
48 changes: 0 additions & 48 deletions include/mrdox/Metadata/DomContext.hpp

This file was deleted.

14 changes: 14 additions & 0 deletions include/mrdox/Metadata/DomMetadata.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,20 @@
namespace clang {
namespace mrdox {

/*
class DomFrame
{
struct Impl;
std::unique_ptr<Impl> impl_;
public:
DomFrame(Corpus const& corpus);
dom::Value get(SymbolID const& id);
};
*/

/** Return a Dom node for the given metadata.
*/
MRDOX_DECL
Expand Down
Loading

0 comments on commit 940033e

Please sign in to comment.