Description provides information about where the expression came from.
()
| 298 | |
| 299 | // Description provides information about where the expression came from. |
| 300 | func (s *SourceInfo) Description() string { |
| 301 | if s == nil { |
| 302 | return "" |
| 303 | } |
| 304 | return s.desc |
| 305 | } |
| 306 | |
| 307 | // LineOffsets returns a list of the 0-based character offsets in the input text where newlines appear. |
| 308 | func (s *SourceInfo) LineOffsets() []int32 { |
no outgoing calls