Searched defs:Select (Results 1 – 1 of 1) sorted by relevance
847 type Select struct { struct848 Scope *Scope // scope used to evaluate the body of the select later on849 KeywordPos scanner.Position // the keyword "select"850 Conditions []ConfigurableCondition851 LBracePos scanner.Position852 RBracePos scanner.Position853 Cases []*SelectCase // the case statements854 Append Expression857 func (s *Select) Pos() scanner.Position { return s.KeywordPos }858 func (s *Select) End() scanner.Position { return endPos(s.RBracePos, 1) }[all …]