(component string)
| 1998 | } |
| 1999 | |
| 2000 | func isSimpleName(component string) bool { |
| 2001 | for i := 0; i < len(component); i++ { |
| 2002 | if component[i] < ' ' { |
| 2003 | return false |
| 2004 | } |
| 2005 | switch component[i] { |
| 2006 | case '[', ']', '{', '}', '(', ')', '#', '|', '!': |
| 2007 | return false |
| 2008 | } |
| 2009 | } |
| 2010 | return true |
| 2011 | } |
| 2012 | |
| 2013 | var hexchars = [...]byte{ |
| 2014 | '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', |
no outgoing calls
no test coverage detected
searching dependent graphs…