(identifier string)
| 1600 | } |
| 1601 | |
| 1602 | func unquoteDoubleQuoted(identifier string) string { |
| 1603 | if len(identifier) >= 2 && identifier[0] == '"' && identifier[len(identifier)-1] == '"' { |
| 1604 | return identifier[1 : len(identifier)-1] |
| 1605 | } |
| 1606 | return identifier |
| 1607 | } |
| 1608 | |
| 1609 | type objectFlag int |
| 1610 |
no outgoing calls
no test coverage detected