diff options
| author | Yong He <yonghe@outlook.com> | 2025-07-03 15:20:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-03 22:20:23 +0000 |
| commit | b4fc380af5e390ca11892f9e657e653f6869c21b (patch) | |
| tree | 9072841ed14a190cce0790ced27b283f85d1fc4f /tools/slangd/main.cpp | |
| parent | 551d0c365571a2e36505851f6a713464662c5fea (diff) | |
Language Server Enhancements (#7604)
* Language Server: auto-select the best candidate in signature help.
* Fix constructor call highlighting + goto definition.
* Add test.
* format code
* Improve ctor signature help.
* Add tests.
* Fix decl path printing for extension children.
* Allow goto definition to show core module source.
* c++ compile fix.
---------
Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com>
Diffstat (limited to 'tools/slangd/main.cpp')
| -rw-r--r-- | tools/slangd/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/slangd/main.cpp b/tools/slangd/main.cpp index 240992273..f2b962253 100644 --- a/tools/slangd/main.cpp +++ b/tools/slangd/main.cpp @@ -16,6 +16,14 @@ int main(int argc, const char* const* argv) { isDebug = true; } + else if (Slang::UnownedStringSlice(argv[i]) == "--print-builtin-module" && i < argc - 1) + { + Slang::UnownedStringSlice moduleName = Slang::UnownedStringSlice(argv[++i]); + Slang::ComPtr<slang::IBlob> code; + Slang::getBuiltinModuleSource(moduleName, code.writeRef()); + printf("%s\n", (const char*)code->getBufferPointer()); + return 0; + } } if (isDebug) { |
