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