Ver Fonte

Context.Engine renamed to Context.engine

Manu Mtz-Almeida há 10 anos atrás
pai
commit
5f76ba2022
3 ficheiros alterados com 5 adições e 5 exclusões
  1. 2 2
      context.go
  2. 2 2
      context_test.go
  3. 1 1
      gin.go

+ 2 - 2
context.go

@@ -70,7 +70,7 @@ type Context struct {
 	handlers HandlersChain
 	index    int8
 
-	Engine   *Engine
+	engine   *Engine
 	Keys     map[string]interface{}
 	Errors   errorMsgs
 	Accepted []string
@@ -328,7 +328,7 @@ func (c *Context) Render(code int, r render.Render) {
 // It also updates the HTTP code and sets the Content-Type as "text/html".
 // See http://golang.org/doc/articles/wiki/
 func (c *Context) HTML(code int, name string, obj interface{}) {
-	instance := c.Engine.HTMLRender.Instance(name, obj)
+	instance := c.engine.HTMLRender.Instance(name, obj)
 	c.Render(code, instance)
 }
 

+ 2 - 2
context_test.go

@@ -36,7 +36,7 @@ func createTestContext() (c *Context, w *httptest.ResponseRecorder, r *Engine) {
 func TestContextReset(t *testing.T) {
 	router := New()
 	c := router.allocateContext()
-	assert.Equal(t, c.Engine, router)
+	assert.Equal(t, c.engine, router)
 
 	c.index = 2
 	c.Writer = &responseWriter{ResponseWriter: httptest.NewRecorder()}
@@ -110,7 +110,7 @@ func TestContextCopy(t *testing.T) {
 	assert.Equal(t, cp.Request, c.Request)
 	assert.Equal(t, cp.index, AbortIndex)
 	assert.Equal(t, cp.Keys, c.Keys)
-	assert.Equal(t, cp.Engine, c.Engine)
+	assert.Equal(t, cp.engine, c.engine)
 	assert.Equal(t, cp.Params, c.Params)
 }
 

+ 1 - 1
gin.go

@@ -90,7 +90,7 @@ func Default() *Engine {
 }
 
 func (engine *Engine) allocateContext() (context *Context) {
-	return &Context{Engine: engine}
+	return &Context{engine: engine}
 }
 
 func (engine *Engine) LoadHTMLGlob(pattern string) {