| 651 | // https://docs.python.org/3/library/ast.html#ast.Subscript |
| 652 | #[derive(Debug, Clone)] |
| 653 | pub struct Subscript { |
| 654 | pub node: Node, |
| 655 | pub value: Expression, |
| 656 | pub slice: Expression, |
| 657 | } |
| 658 | |
| 659 | // https://docs.python.org/3/library/ast.html#ast.Slice |
| 660 | // can be used for Subscript |