mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
/sshd_config/ast
This folder contains the AST (Abstract Syntax Tree) for the handlers. The AST is defined in a filename that's the same as the handler's name.
Each AST node must extend the following fields:
type ASTNode struct {
common.LocationRange
Value commonparser.ParsedString
}
Each node should use a shared prefix for the node name,
e.g. SSHDConfig
, SSDKey
for the sshd_config
handler.