1
0
mirror of https://github.com/strongdm/comply synced 2024-07-02 23:14:22 +00:00
comply/vendor/github.com/yosssi/ace/source.go

18 lines
324 B
Go
Raw Normal View History

2018-05-15 21:13:11 +00:00
package ace
// source represents source for the parsing process.
type source struct {
base *File
inner *File
includes []*File
}
// NewSource creates and returns source.
func NewSource(base, inner *File, includes []*File) *source {
return &source{
base: base,
inner: inner,
includes: includes,
}
}