(self, modifier, rettype, funcname, args)
| 173 | Variadic = object() |
| 174 | |
| 175 | def __init__(self, modifier, rettype, funcname, args): |
| 176 | self.modifier = modifier.strip() |
| 177 | self.rettype = re.sub('inline', '', rettype).strip() |
| 178 | self.funcname = funcname.strip() |
| 179 | self.args = self.parse_args(args) |
| 180 | |
| 181 | def is_local(self): |
| 182 | """Am I a local function? |
nothing calls this directly
no test coverage detected