Searched defs:PipeNode (Results 1 – 2 of 2) sorted by relevance
188 type PipeNode struct { struct189 NodeType190 Pos191 tr *Tree192 Line int // The line number in the input. Deprecated: Kept for compatibility.193 IsAssign bool // The variables are being assigned, not declared.194 Decl []*VariableNode // Variables in lexical order.195 Cmds []*CommandNode // The commands in lexical order.202 func (p *PipeNode) append(command *CommandNode) {206 func (p *PipeNode) String() string {[all …]
270 func ensurePipelineContains(p *parse.PipeNode, s []string) {