1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 10:27:06 +00:00

version 12.1.5

Former-commit-id: cda69f08955cb0d594e98bf26197ee573cbba4b2
This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-02-02 16:29:06 +02:00
parent e04ea83c04
commit 3093d65363
76 changed files with 9647 additions and 366 deletions

View File

@@ -87,15 +87,6 @@ func (l *methodLexer) peekNext() (w string) {
return l.peek(l.cur + 1)
}
func (l *methodLexer) peekPrev() (w string) {
if l.cur > 0 {
cur := l.cur - 1
w = l.words[cur]
}
return w
}
func genParamKey(argIdx int) string {
return "param" + strconv.Itoa(argIdx) // param0, param1, param2...
}