mirror of
https://github.com/erg-lang/erg.git
synced 2025-08-04 18:58:30 +00:00
fix: polymorphic type spec instantiation bugs
This commit is contained in:
parent
e38674945b
commit
74e89f6d5b
11 changed files with 555 additions and 182 deletions
|
@ -2921,9 +2921,9 @@ impl ConstKwArg {
|
|||
#[pyclass]
|
||||
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
|
||||
pub struct ConstArgs {
|
||||
pos_args: Vec<ConstPosArg>,
|
||||
pub pos_args: Vec<ConstPosArg>,
|
||||
pub var_args: Option<Box<ConstPosArg>>,
|
||||
kw_args: Vec<ConstKwArg>,
|
||||
pub kw_args: Vec<ConstKwArg>,
|
||||
pub kw_var: Option<Box<ConstPosArg>>,
|
||||
paren: Option<(Token, Token)>,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue