diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/expand/file_line.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/expand/file_line.cpp b/src/expand/file_line.cpp index 28bd73b7..8ce56436 100644 --- a/src/expand/file_line.cpp +++ b/src/expand/file_line.cpp @@ -21,6 +21,22 @@ class CExpanderLine: } }; +class CExpanderModulePath: + public ExpandProcMacro +{ + ::std::unique_ptr<TokenStream> expand(const Span& sp, const AST::Crate& crate, const ::std::string& ident, const TokenTree& tt, AST::Module& mod) override + { + ::std::string path_str; + for(const auto& comp : mod.path().nodes()) { + if( &comp != &mod.path().nodes().front() ) + path_str += "::"; + path_str += comp.name(); + } + return box$( TTStreamO(TokenTree( Token(TOK_STRING, mv$(path_str)) )) ); + } +}; + STATIC_MACRO("file", CExpanderFile); STATIC_MACRO("line", CExpanderLine); +STATIC_MACRO("module_path", CExpanderModulePath); |