Coding tests
Real software problems an AI agent solves step by step, graded by hidden tests that fail on the broken code and pass only on the fix.
- def resolve(node): + def resolve(node, source=None): + return dispatch(node.value, source) # pytest -q 12/12 passed
