| 10 | } |
| 11 | |
| 12 | vector<string> JniSignatureParser::Parse() { |
| 13 | size_t startIdx = m_signature.find_first_of('('); |
| 14 | |
| 15 | assert(startIdx != string::npos); |
| 16 | |
| 17 | size_t endIdx = m_signature.find_first_of(')'); |
| 18 | |
| 19 | assert(endIdx != string::npos); |
| 20 | |
| 21 | vector<string> tokens = ParseParams(startIdx + 1, endIdx); |
| 22 | |
| 23 | return tokens; |
| 24 | } |
| 25 | |
| 26 | vector<string> JniSignatureParser::ParseParams(int stardIdx, int endIdx) { |
| 27 | vector<string> tokens; |
no outgoing calls
no test coverage detected