| 248 | } |
| 249 | |
| 250 | static string strip(string s) { |
| 251 | int n = s.size(); |
| 252 | if(n<=1) return s; |
| 253 | if(s[0] == '(' && s[n-1] == ')') return strip(s.substr(1,n-2)); |
| 254 | return s; |
| 255 | } |
| 256 | mutable string s; |
| 257 | |
| 258 | static CCode Par(const CCode &c) { |
no outgoing calls
no test coverage detected