(path string, data []byte)
| 28 | } |
| 29 | |
| 30 | func NewBytesSource(path string, data []byte) BytesSource { return BytesSource{path, data} } |
| 31 | |
| 32 | func (s BytesSource) Description() string { return s.path } |
| 33 | func (s BytesSource) RelativePath() (string, error) { return s.path, nil } |
no outgoing calls
searching dependent graphs…