Searched defs:Select (Results 1 – 1 of 1) sorted by relevance
611 type Select struct { struct612 KeywordPos scanner.Position // the keyword "select"613 Conditions []ConfigurableCondition614 LBracePos scanner.Position615 RBracePos scanner.Position616 Cases []*SelectCase // the case statements617 Append Expression618 ExpressionType Type621 func (s *Select) Pos() scanner.Position { return s.KeywordPos }622 func (s *Select) End() scanner.Position { return endPos(s.RBracePos, 1) }[all …]