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
Using //+private in a file at the package declaration will automatically add @(private) to everything in the file
//+private
package foo
ols doesn't appear to do this, however. Adding @(private) to structs/enums/procs in a file individually does work for ols Intellisense, but the private comment at the top of the file doesn't do anything in the Intellisense (that is, all items in the file are still visible outside the file/package for Intellisense.
The text was updated successfully, but these errors were encountered:
Per the Odin docs on private:
Using //+private in a file at the package declaration will automatically add @(private) to everything in the file
ols doesn't appear to do this, however. Adding
@(private)
to structs/enums/procs in a file individually does work for ols Intellisense, but the private comment at the top of the file doesn't do anything in the Intellisense (that is, all items in the file are still visible outside the file/package for Intellisense.The text was updated successfully, but these errors were encountered: