Ignore prefix if start with `.`

pull/4/head
oda 2015-05-29 18:00:38 +09:00
parent b0c5bef59f
commit 1788809334
1 changed files with 3 additions and 1 deletions

View File

@ -229,7 +229,9 @@ func safeFunctionName(name string, knownFuncs map[string]int) string {
for i := 0; i < len(inBytes); i++ {
if regFuncName.Match([]byte{inBytes[i]}) {
i++
for j := i; j < len(inBytes) && regFuncName.Match([]byte{inBytes[j]}); j++ {
i++
}
outBytes = append(outBytes, []byte(strings.ToUpper(string(inBytes[i])))...)
// bytes[i] = strings.ToUpper(string(byte))
} else {