1
0
mirror of https://github.com/strongdm/comply synced 2024-08-27 09:46:47 +00:00
comply/vendor/github.com/yosssi/ace/source.go

18 lines
324 B
Go
Raw Permalink Normal View History

2018-05-10 01:02:33 +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,
}
}