(self, eval_ctx=None)
| 548 | fields = ('items',) |
| 549 | |
| 550 | def as_const(self, eval_ctx=None): |
| 551 | eval_ctx = get_eval_context(self, eval_ctx) |
| 552 | return [x.as_const(eval_ctx) for x in self.items] |
| 553 | |
| 554 | |
| 555 | class Dict(Literal): |
nothing calls this directly
no test coverage detected