Lines Matching defs:End
27 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
239 func (x *Operator) End() scanner.Position { return x.Args[1].End() } func
253 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) } func
277 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) } func
371 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) } func
403 func (x *String) End() scanner.Position { return endPos(x.LiteralPos, len(x.Value)+2) } func
429 func (x *Int64) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func
455 func (x *Bool) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func
479 func (x *CommentGroup) End() scanner.Position { return x.Comments[len(x.Comments)-1].End() } func
490 func (c Comment) End() scanner.Position { func
566 func (n NotEvaluated) End() scanner.Position { return n.Position } func
622 func (s *Select) End() scanner.Position { return endPos(s.RBracePos, 1) } func
668 func (c *SelectCase) End() scanner.Position { return c.Value.End() } func
701 func (n UnsetProperty) End() scanner.Position { return n.Position } func