MCPcopy Create free account
hub / github.com/Glyphack/enderpy / Call

Class Call

parser/src/ast.rs:671–678  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

669// https://docs.python.org/3/library/ast.html#ast.Call
670#[derive(Debug, Clone)]
671pub struct Call {
672 pub node: Node,
673 pub func: Expression,
674 pub args: Vec<Expression>,
675 pub keywords: Vec<Keyword>,
676 pub starargs: Option<Expression>,
677 pub kwargs: Option<Expression>,
678}
679
680#[derive(Debug, Clone)]
681pub struct Keyword {

Callers 1

parse_primaryMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected