Description provides information about where the expression came from.
()
| 290 | |
| 291 | // Description provides information about where the expression came from. |
| 292 | func (s *SourceInfo) Description() string { |
| 293 | if s == nil { |
| 294 | return "" |
| 295 | } |
| 296 | return s.desc |
| 297 | } |
| 298 | |
| 299 | // LineOffsets returns a list of the 0-based character offsets in the input text where newlines appear. |
| 300 | func (s *SourceInfo) LineOffsets() []int32 { |
no outgoing calls