mirror of https://github.com/gin-gonic/gin.git
add ResetTrees in gin.go
This commit is contained in:
parent
580e7da6ee
commit
4400ae8080
4
gin.go
4
gin.go
|
@ -213,6 +213,10 @@ func (engine *Engine) allocateContext() *Context {
|
||||||
return &Context{engine: engine, params: &v, skippedNodes: &skippedNodes}
|
return &Context{engine: engine, params: &v, skippedNodes: &skippedNodes}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (e *Engine) ResetTrees() {
|
||||||
|
e.trees = make(methodTrees, 0, 9)
|
||||||
|
}
|
||||||
|
|
||||||
// Delims sets template left and right delims and returns an Engine instance.
|
// Delims sets template left and right delims and returns an Engine instance.
|
||||||
func (engine *Engine) Delims(left, right string) *Engine {
|
func (engine *Engine) Delims(left, right string) *Engine {
|
||||||
engine.delims = render.Delims{Left: left, Right: right}
|
engine.delims = render.Delims{Left: left, Right: right}
|
||||||
|
|
Loading…
Reference in New Issue