@@ -1126,6 +1126,9 @@ class ParamSpec_ extends @py_ParamSpec, TypeParameter {
11261126 /** Gets the name of this parameter spec. */
11271127 Expr getName ( ) { py_exprs ( result , _, this , 1 ) }
11281128
1129+ /** Gets the default of this parameter spec. */
1130+ Expr getDefault ( ) { py_exprs ( result , _, this , 2 ) }
1131+
11291132 override string toString ( ) { result = "ParamSpec" }
11301133}
11311134
@@ -1466,6 +1469,9 @@ class TypeVar_ extends @py_TypeVar, TypeParameter {
14661469 /** Gets the bound of this type variable. */
14671470 Expr getBound ( ) { py_exprs ( result , _, this , 2 ) }
14681471
1472+ /** Gets the default of this type variable. */
1473+ Expr getDefault ( ) { py_exprs ( result , _, this , 3 ) }
1474+
14691475 override string toString ( ) { result = "TypeVar" }
14701476}
14711477
@@ -1474,6 +1480,9 @@ class TypeVarTuple_ extends @py_TypeVarTuple, TypeParameter {
14741480 /** Gets the name of this type variable tuple. */
14751481 Expr getName ( ) { py_exprs ( result , _, this , 1 ) }
14761482
1483+ /** Gets the default of this type variable tuple. */
1484+ Expr getDefault ( ) { py_exprs ( result , _, this , 2 ) }
1485+
14771486 override string toString ( ) { result = "TypeVarTuple" }
14781487}
14791488
0 commit comments