(leaf: Expression)
| 550 | const r = box(['At', dict, { str: 'depth' }] as any).evaluate(); |
| 551 | expect(r.isNaN === true || r.symbol === 'Missing').toBe(true); |
| 552 | }); |
| 553 | |
| 554 | it('leaves a non-string index unevaluated (string keys only)', () => { |
| 555 | expect(box(['At', dict, 2] as any).evaluate().operator).toBe('At'); |
| 556 | }); |
no test coverage detected