Hi guys,
Open question for all of you...
We are getting some warnings in our code of a class definition when switching namespaces in the code, because the classes we use in different namespace wouldn't exist in each other's... an example:
ClassMethod DoSomething() {
set oldNS=$zutil(5)
znspace "SECONDNS"
set ok=##class(MyPackage.MyClass).MyMethod()
znspace oldNS
}In that example, the vscode "Intersystems Language Server" extension would tag "MyPackage.MyClass" as a problem because that class only exists in the second namespace.