Lines Matching defs:End
27 End() scanner.Position methodSpec
54 func (a *Assignment) End() scanner.Position { return a.Value.End() } func
87 func (m *Module) End() scanner.Position { return m.Map.End() } func
108 func (p *Property) End() scanner.Position { return p.Value.End() } func
209 func (x *Operator) End() scanner.Position { return x.Args[1].End() } func
223 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) } func
247 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) } func
305 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) } func
337 func (x *String) End() scanner.Position { return endPos(x.LiteralPos, len(x.Value)+2) } func
363 func (x *Int64) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func
389 func (x *Bool) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func
413 func (x *CommentGroup) End() scanner.Position { return x.Comments[len(x.Comments)-1].End() } func
424 func (c Comment) End() scanner.Position { func