```text > require('meriyah').version '4.2.0' > require('meriyah').parseModule('await 1') { type: 'Program', sourceType: 'module', body: [ { type: 'ExpressionStatement', expression: [Object] } ] } > require('meriyah').parseModule('foo(await 1)') Uncaught [ParseError [SyntaxError]: [1:9]: Await is only valid in async functions ] { index: 9, line: 1, column: 9, description: '[1:9]: Await is only valid in async functions', loc: { line: 1, column: 9 } } ```