src.elv.sh/pkg/eval.compiler.compoundOps (method)

11 uses

	src.elv.sh/pkg/eval (current package)
		builtin_special.go#L78: 					cp.compoundOps(fn.Args[i+1:])}
		builtin_special.go#L137: 			cp.compoundOps(fn.Args[eq+1:])}
		builtin_special.go#L405: 	return &andOrOp{cp.compoundOps(fn.Args), true, false}
		builtin_special.go#L415: 	return &andOrOp{cp.compoundOps(fn.Args), false, true}
		builtin_special.go#L459: 	condOps := cp.compoundOps(condNodes)
		compile_effect.go#L195: 			rhsOps := cp.compoundOps(n.Args[i+1:])
		compile_effect.go#L222: 	argOps := cp.compoundOps(n.Args)
		compile_value.go#L55: func (cp *compiler) compoundOps(ns []*parse.Compound) []valuesOp {
		compile_value.go#L197: 	return seqValuesOp{n.Range(), cp.compoundOps(n.Compounds)}
		compile_value.go#L282: 		return listOp{n.Range(), cp.compoundOps(n.Elements)}
		compile_value.go#L288: 		return seqValuesOp{n.Range(), cp.compoundOps(n.Braced)}