Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
565 B
Go
25 lines
565 B
Go
package ini
|
|
|
|
// newExpression will return an expression AST.
|
|
// Expr represents an expression
|
|
//
|
|
// grammar:
|
|
// expr -> string | number
|
|
func newExpression(tok Token) AST {
|
|
return newASTWithRootToken(ASTKindExpr, tok)
|
|
}
|
|
|
|
func newEqualExpr(left AST, tok Token) AST {
|
|
return newASTWithRootToken(ASTKindEqualExpr, tok, left)
|
|
}
|
|
|
|
// EqualExprKey will return a LHS value in the equal expr
|
|
func EqualExprKey(ast AST) string {
|
|
children := ast.GetChildren()
|
|
if len(children) == 0 || ast.Kind != ASTKindEqualExpr {
|
|
return ""
|
|
}
|
|
|
|
return string(children[0].Root.Raw())
|
|
}
|