The doc AST expression node evaluating method. Parameters ---------- v : Any The root node of AST tree node of expression to evaluate. Returns ------- res : Any The evaluation result.
(self, v: Any)
| 424 | return slice(lower, upper, step) |
| 425 | |
| 426 | def _eval_expr(self, v: Any) -> Any: |
| 427 | """The doc AST expression node evaluating method. |
| 428 | |
| 429 | Parameters |
| 430 | ---------- |
| 431 | v : Any |
| 432 | The root node of AST tree node of expression to evaluate. |
| 433 | |
| 434 | Returns |
| 435 | ------- |
| 436 | res : Any |
| 437 | The evaluation result. |
| 438 | """ |
| 439 | return _eval_expr(v, self.value_table) |
| 440 | |
| 441 | |
| 442 | def eval_expr( |
no test coverage detected