MCPcopy Create free account
hub / github.com/BasisResearch/lean.py / _extract_export_names

Function _extract_export_names

lean_py/_parse.py:258–261  ·  view source on GitHub ↗
(header_path: Path)

Source from the content-addressed store, hash-verified

256 if ptype == "void":
257 continue
258 params.append(FuncParam(name="", c_type=ptype))
259 elif isinstance(param, c_ast.Decl):
260 pname = param.name or ""
261 ptype = _decl_type_to_str(param.type)
262 if ptype == "void" and not pname:
263 continue
264 params.append(FuncParam(name=pname, c_type=ptype))

Callers 1

_classifyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected