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

17 lines
339 B
Go
Raw Normal View History

2017-07-07 11:41:37 +02:00
package parser
import "github.com/osteele/liquid/expression"
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 {
expression.Config
2017-07-09 17:49:24 +02:00
Grammar Grammar
Filename 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
}