MCPcopy Create free account
hub / github.com/github/gh-aw / DisjunctionNode

Struct DisjunctionNode

pkg/workflow/expression_nodes.go:82–85  ·  view source on GitHub ↗

DisjunctionNode represents an OR operation with multiple terms to avoid deep nesting

Source from the content-addressed store, hash-verified

80
81// DisjunctionNode represents an OR operation with multiple terms to avoid deep nesting
82type DisjunctionNode struct {
83 Terms []ConditionNode
84 Multiline bool // If true, render each term on separate line with comments
85}
86
87func (d *DisjunctionNode) Render() string {
88 if len(d.Terms) == 0 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected