1
0
mirror of https://github.com/danog/liquid.git synced 2024-12-02 13:17:47 +01:00
liquid/parser/config.go

17 lines
347 B
Go
Raw Normal View History

2017-07-07 11:41:37 +02:00
package parser
2017-07-14 02:18:23 +02:00
import "github.com/osteele/liquid/expressions"
2017-07-07 11:41:37 +02:00
2017-07-07 13:30:32 +02:00
// A Config holds configuration information for parsing and rendering.
2017-07-07 11:41:37 +02:00
type Config struct {
2017-07-14 02:18:23 +02:00
expressions.Config
2017-07-12 13:19:58 +02:00
Grammar Grammar
SourcePath string
LineNo int
2017-07-07 11:41:37 +02:00
}
2017-07-07 13:30:32 +02:00
// NewConfig creates a parser Config.
func NewConfig(g Grammar) Config {
return Config{Grammar: g, LineNo: 1}
2017-07-07 11:41:37 +02:00
}