(self, eval_ctx: t.Optional[EvalContext] = None)
| 648 | items: t.List[Expr] |
| 649 | |
| 650 | def as_const(self, eval_ctx: t.Optional[EvalContext] = None) -> t.List[t.Any]: |
| 651 | eval_ctx = get_eval_context(self, eval_ctx) |
| 652 | return [x.as_const(eval_ctx) for x in self.items] |
| 653 | |
| 654 | |
| 655 | class Dict(Literal): |
nothing calls this directly
no test coverage detected