Merge branch 'main' into shape

This commit is contained in:
Shunsuke Shibayama 2023-08-02 15:59:24 +09:00
commit 0dd5ac0775
13 changed files with 307 additions and 51 deletions

View file

@ -2185,7 +2185,7 @@ impl ConstKwArg {
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct ConstArgs {
pos_args: Vec<ConstPosArg>,
var_args: Option<Box<ConstPosArg>>,
pub var_args: Option<Box<ConstPosArg>>,
kw_args: Vec<ConstKwArg>,
paren: Option<(Token, Token)>,
}