當前位置: 首頁>>代碼示例>>Golang>>正文


Golang parse.Compound類代碼示例

本文整理匯總了Golang中github.com/elves/elvish/parse.Compound的典型用法代碼示例。如果您正苦於以下問題:Golang Compound類的具體用法?Golang Compound怎麽用?Golang Compound使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Compound類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: mustPrimary

func mustPrimary(cp *compiler, cn *parse.Compound, msg string) *parse.Primary {
	p := onePrimary(cn)
	if p == nil {
		cp.errorpf(cn.Begin(), cn.End(), msg)
	}
	return p
}
開發者ID:zhsj,項目名稱:elvish,代碼行數:7,代碼來源:must.go

示例2: mustString

// mustString musts that a Compound contains exactly one Primary of type
// Variable.
func mustString(cp *compiler, cn *parse.Compound, msg string) string {
	s, ok := oneString(cn)
	if !ok {
		cp.errorpf(cn.Begin(), cn.End(), msg)
	}
	return s
}
開發者ID:zhsj,項目名稱:elvish,代碼行數:9,代碼來源:must.go

示例3: formHead

func (s *Stylist) formHead(n *parse.Compound) {
	simple, head, err := simpleCompound(n, nil)
	st := styles{}
	if simple {
		if goodFormHead(head, s.editor) {
			st = styleForGoodCommand
		} else {
			st = styleForBadCommand
		}
	} else if err != nil {
		st = styleForBadCommand
	}
	if len(st) > 0 {
		s.add(st.String(), n.Begin(), n.End())
	}
}
開發者ID:elves,項目名稱:elvish,代碼行數:16,代碼來源:stylist.go

示例4: compoundOp

func (cp *compiler) compoundOp(n *parse.Compound) ValuesOp {
	return ValuesOp{cp.compound(n), n.Begin(), n.End()}
}
開發者ID:zhsj,項目名稱:elvish,代碼行數:3,代碼來源:boilerplate.go

示例5: isFormHead

func isFormHead(compound *parse.Compound) bool {
	if form, ok := compound.Parent().(*parse.Form); ok {
		return form.Head == compound
	}
	return false
}
開發者ID:zhsj,項目名稱:elvish,代碼行數:6,代碼來源:nodeutil.go


注:本文中的github.com/elves/elvish/parse.Compound類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。