Description
distributed actor Worker {
distributed var num: Int { 2 }
distributed func ping() {}
}
textDocument/semanticTokens/full returns:
- Worker: (class, [declaration])
- num: (property, [declaration])
- ping: (method, [declaration])
Nothing indicates any of these are distributed.
For what it's worth, even actor should be getting a distinct semantic token I think, because we may want to highlight actors differently; they're not just classes.
Description
textDocument/semanticTokens/full returns:
Nothing indicates any of these are distributed.
For what it's worth, even
actorshould be getting a distinct semantic token I think, because we may want to highlight actors differently; they're not just classes.