Lines Matching defs:End
28 End() scanner.Position methodSpec
54 func (a *Assignment) End() scanner.Position { return a.Value.End() } func
89 func (m *Module) End() scanner.Position { return m.Map.End() } func
132 func (p *Property) End() scanner.Position { return p.Value.End() } func
390 func (x *Operator) End() scanner.Position { return x.Args[1].End() } func
404 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) } func
446 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) } func
568 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) } func
627 func (x *String) End() scanner.Position { return endPos(x.LiteralPos, len(x.Value)+2) } func
674 func (x *Int64) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func
707 func (x *Bool) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func
738 func (x *CommentGroup) End() scanner.Position { return x.Comments[len(x.Comments)-1].End() } func
749 func (c Comment) End() scanner.Position { func
858 func (s *Select) End() scanner.Position { return endPos(s.RBracePos, 1) } func
909 func (c *SelectPattern) End() scanner.Position { func
937 func (c *SelectCase) End() scanner.Position { return c.Value.End() } func
977 func (n *UnsetProperty) End() scanner.Position { return n.Position } func