A compiled, executable async expression.
const expression = jshiki.parseAsync('await foo.bar()')await expression({ foo: { bar: async () => 'baz' },}) // => 'baz' Copy
const expression = jshiki.parseAsync('await foo.bar()')await expression({ foo: { bar: async () => 'baz' },}) // => 'baz'
Optional
The scope to use when evaluating the expression. The expression will be limited to accessing the properties of the scope.
A compiled, executable async expression.