ad9c3b1d8d
* Parse inner JSX as Astro This completes the compiler changes, updating the parser so that it parses inner "JSX" as Astro. It does this by finding the start and end of HTML tags and feeds that back into the parser. The result is a structure like this: ``` { type: 'MustacheTag', expression: [ { type: 'Expression', codeStart: 'colors.map(color => (', codeEnd: '}}' children: [ { type: 'Fragment', children: [ { type: 'Element', name: 'div' } ] } ] } ] } ``` There is a new Node type, `Expression`. Note that `MustacheTag` remains in the tree, all it contains is an Expression though. I could spend some time trying to remove it, there's just a few places that expect it to exist. * Update import to the transform * Transform prism components into expressions |
||
---|---|---|
.. | ||
fixtures | ||
astro-basic.test.js | ||
astro-doctype.test.js | ||
astro-expr.test.js | ||
astro-fallback.test.js | ||
astro-markdown.test.js | ||
astro-request.test.js | ||
astro-scoped-styles.test.js | ||
astro-search.test.js | ||
astro-styles-ssr.test.js | ||
helpers.js | ||
react-component.test.js | ||
snowpack-integration.test.js | ||
test-utils.js |