In my case, I give a DOM element to scope, and want to parse out the value property, but not work:
const el = document.querySelector('#input')
const ev = expressions.compile('el.value')
console.log(ev({ el }))
I get undefined, could you please to fix this?