MCPcopy Index your code
hub / github.com/nodejs/node / main

Function main

deps/libffi/preprocess_asm.py:120–130  ·  view source on GitHub ↗
(argv=None)

Source from the content-addressed store, hash-verified

118
119
120def main(argv=None):
121 parser = argparse.ArgumentParser(description='Preprocess libffi assembly source')
122 parser.add_argument('--input', required=True)
123 parser.add_argument('--output', required=True)
124 parser.add_argument('--include-dir', action='append', default=[])
125 parser.add_argument('--define', action='append', default=[])
126 parser.add_argument('--assemble', help='Also assemble the output to this object file')
127 args = parser.parse_args(argv)
128
129 preprocess(args)
130 return 0
131
132
133if __name__ == '__main__':

Callers 1

preprocess_asm.pyFile · 0.70

Calls 3

preprocessFunction · 0.70
add_argumentMethod · 0.45
parse_argsMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…