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

Class ClassDef

parser/src/ast.rs:987–995  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

985// https://docs.python.org/3/library/ast.html#ast.ClassDef
986#[derive(Debug, Clone)]
987pub struct ClassDef {
988 pub node: Node,
989 pub name: StrId,
990 pub bases: Vec<Expression>,
991 pub keywords: Vec<Keyword>,
992 pub body: Vec<Statement>,
993 pub decorator_list: Vec<Expression>,
994 pub type_params: Vec<TypeParam>,
995}
996
997// https://docs.python.org/3/library/ast.html#ast.Match
998#[derive(Debug, Clone)]

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected