Lines Matching refs: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
212 func (x *Operator) End() scanner.Position { return x.Args[1].End() } func
226 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) } func
250 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) } func
308 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) } func
340 func (x *String) End() scanner.Position { return endPos(x.LiteralPos, len(x.Value)+2) } func
366 func (x *Int64) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func
392 func (x *Bool) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) } func
416 func (x *CommentGroup) End() scanner.Position { return x.Comments[len(x.Comments)-1].End() } func
427 func (c Comment) End() scanner.Position { func
503 func (n NotEvaluated) End() scanner.Position { return n.Position } func