本文整理匯總了Golang中github.com/getgauge/gauge/parser.Item類的典型用法代碼示例。如果您正苦於以下問題:Golang Item類的具體用法?Golang Item怎麽用?Golang Item使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Item類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Filter
func (filter *ScenarioFilterBasedOnTags) Filter(item parser.Item) bool {
if item.Kind() == parser.ScenarioKind {
tags := item.(*parser.Scenario).Tags
if tags == nil {
return !filter.filterTags(filter.specTags)
}
return !filter.filterTags(append(tags.Values, filter.specTags...))
}
return false
}
示例2: resolveToProtoItem
func (executor *specExecutor) resolveToProtoItem(item parser.Item) *gauge_messages.ProtoItem {
var protoItem *gauge_messages.ProtoItem
switch item.Kind() {
case parser.StepKind:
if (item.(*parser.Step)).IsConcept {
concept := item.(*parser.Step)
protoItem = executor.resolveToProtoConceptItem(*concept)
} else {
protoItem = executor.resolveToProtoStepItem(item.(*parser.Step))
}
break
default:
protoItem = parser.ConvertToProtoItem(item)
}
return protoItem
}
示例3: formatItem
func formatItem(item parser.Item) string {
switch item.Kind() {
case parser.CommentKind:
comment := item.(*parser.Comment)
if comment.Value == "\n" {
return comment.Value
}
return fmt.Sprintf("%s\n", comment.Value)
case parser.StepKind:
step := item.(*parser.Step)
return FormatStep(step)
case parser.DataTableKind:
dataTable := item.(*parser.DataTable)
return FormatTable(&dataTable.Table)
case parser.TagKind:
tags := item.(*parser.Tags)
return FormatTags(tags)
}
return ""
}