mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
16 lines
315 B
Go
16 lines
315 B
Go
package aliases
|
|
|
|
import (
|
|
"config-lsp/handlers/aliases/ast"
|
|
"config-lsp/handlers/aliases/indexes"
|
|
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
type AliasesDocument struct {
|
|
Parser *ast.AliasesParser
|
|
Indexes *indexes.AliasesIndexes
|
|
}
|
|
|
|
var DocumentParserMap = map[protocol.DocumentUri]*AliasesDocument{}
|