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
236 func (x *Operator) End() scanner.Position { return x.Args[1].End() } func
250 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) } func
274 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) } func
368 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) } func
400 func (x *String) End() scanner.Position { return endPos(x.LiteralPos, len(x.Value)+2) } func
426 func (x *Int64) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func
452 func (x *Bool) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func
476 func (x *CommentGroup) End() scanner.Position { return x.Comments[len(x.Comments)-1].End() } func
487 func (c Comment) End() scanner.Position { func
563 func (n NotEvaluated) End() scanner.Position { return n.Position } func