Ask daemon to print the type of an expression.
(args: argparse.Namespace)
| 526 | |
| 527 | @action(inspect_parser) |
| 528 | def do_inspect(args: argparse.Namespace) -> None: |
| 529 | """Ask daemon to print the type of an expression.""" |
| 530 | response = request( |
| 531 | args.status_file, |
| 532 | "inspect", |
| 533 | show=args.show, |
| 534 | location=args.location, |
| 535 | verbosity=args.verbose, |
| 536 | limit=args.limit, |
| 537 | include_span=args.include_span, |
| 538 | include_kind=args.include_kind, |
| 539 | include_object_attrs=args.include_object_attrs, |
| 540 | union_attrs=args.union_attrs, |
| 541 | force_reload=args.force_reload, |
| 542 | ) |
| 543 | check_output(response, verbose=False, junit_xml=None, perf_stats_file=None) |
| 544 | |
| 545 | |
| 546 | def check_output( |
nothing calls this directly
no test coverage detected
searching dependent graphs…