You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I working on my project I find out that serve-d is not showing me internal API from other libraries and local too. For example this code is not indexed at all:
importstd.stdio; // Works fineimport toml; // Completions goneimport log4d; // Local-Package, completions gone tooauto parsed_data = toml.parse(...); // No documentation & completionsauto logger = new log4d.logger.TerminalLogger(); // Gone too
Maybe problem in targetType. If Serve-D works with libraries as they are, then it can not compile program at all and receive errors from it. Maybe need to handle all possible Build Types: staticLibrary, sourceLibrary, sharedLibrary. Wrap those formats into abstract main.d and compile like normal.
The text was updated successfully, but these errors were encountered:
Specs:
Problem
When I working on my project I find out that serve-d is not showing me internal API from other libraries and local too. For example this code is not indexed at all:
Logs
Possible issue
Maybe problem in
targetType
. If Serve-D works with libraries as they are, then it can not compile program at all and receive errors from it. Maybe need to handle all possible Build Types:staticLibrary
,sourceLibrary
,sharedLibrary
. Wrap those formats into abstract main.d and compile like normal.The text was updated successfully, but these errors were encountered: