Merge pull request from sveltejs/gh-608

Preserve whitespace inside nodes if necessary
pull/683/head
Rich Harris 8 years ago committed by GitHub
commit 203e123d94

@ -39,7 +39,8 @@ const preprocessors = {
generator: DomGenerator, generator: DomGenerator,
block: Block, block: Block,
state: State, state: State,
node: Node node: Node,
stripWhitespace: boolean
) => { ) => {
const dependencies = block.findDependencies(node.expression); const dependencies = block.findDependencies(node.expression);
block.addDependencies(dependencies); block.addDependencies(dependencies);
@ -53,7 +54,8 @@ const preprocessors = {
generator: DomGenerator, generator: DomGenerator,
block: Block, block: Block,
state: State, state: State,
node: Node node: Node,
stripWhitespace: boolean
) => { ) => {
const dependencies = block.findDependencies(node.expression); const dependencies = block.findDependencies(node.expression);
block.addDependencies(dependencies); block.addDependencies(dependencies);
@ -64,7 +66,7 @@ const preprocessors = {
node._state = getChildState(state, { basename, name }); node._state = getChildState(state, { basename, name });
}, },
Text: (generator: DomGenerator, block: Block, state: State, node: Node) => { Text: (generator: DomGenerator, block: Block, state: State, node: Node, stripWhitespace: boolean) => {
node._state = getChildState(state); node._state = getChildState(state);
if (!/\S/.test(node.data)) { if (!/\S/.test(node.data)) {
@ -80,7 +82,9 @@ const preprocessors = {
generator: DomGenerator, generator: DomGenerator,
block: Block, block: Block,
state: State, state: State,
node: Node node: Node,
stripWhitespace: boolean,
nextSibling: Node
) => { ) => {
const blocks: Block[] = []; const blocks: Block[] = [];
let dynamic = false; let dynamic = false;
@ -98,7 +102,7 @@ const preprocessors = {
node._state = getChildState(state); node._state = getChildState(state);
blocks.push(node._block); blocks.push(node._block);
preprocessChildren(generator, node._block, node._state, node); preprocessChildren(generator, node._block, node._state, node, stripWhitespace, node);
if (node._block.dependencies.size > 0) { if (node._block.dependencies.size > 0) {
dynamic = true; dynamic = true;
@ -122,7 +126,9 @@ const preprocessors = {
generator, generator,
node.else._block, node.else._block,
node.else._state, node.else._state,
node.else node.else,
stripWhitespace,
nextSibling
); );
if (node.else._block.dependencies.size > 0) { if (node.else._block.dependencies.size > 0) {
@ -147,7 +153,9 @@ const preprocessors = {
generator: DomGenerator, generator: DomGenerator,
block: Block, block: Block,
state: State, state: State,
node: Node node: Node,
stripWhitespace: boolean,
nextSibling: Node
) => { ) => {
const dependencies = block.findDependencies(node.expression); const dependencies = block.findDependencies(node.expression);
block.addDependencies(dependencies); block.addDependencies(dependencies);
@ -194,7 +202,7 @@ const preprocessors = {
}); });
generator.blocks.push(node._block); generator.blocks.push(node._block);
preprocessChildren(generator, node._block, node._state, node); preprocessChildren(generator, node._block, node._state, node, stripWhitespace, nextSibling);
block.addDependencies(node._block.dependencies); block.addDependencies(node._block.dependencies);
node._block.hasUpdateMethod = node._block.dependencies.size > 0; node._block.hasUpdateMethod = node._block.dependencies.size > 0;
@ -210,7 +218,9 @@ const preprocessors = {
generator, generator,
node.else._block, node.else._block,
node.else._state, node.else._state,
node.else node.else,
stripWhitespace,
nextSibling
); );
node.else._block.hasUpdateMethod = node.else._block.dependencies.size > 0; node.else._block.hasUpdateMethod = node.else._block.dependencies.size > 0;
} }
@ -220,7 +230,9 @@ const preprocessors = {
generator: DomGenerator, generator: DomGenerator,
block: Block, block: Block,
state: State, state: State,
node: Node node: Node,
stripWhitespace: boolean,
nextSibling: Node
) => { ) => {
node.attributes.forEach((attribute: Node) => { node.attributes.forEach((attribute: Node) => {
if (attribute.type === 'Attribute' && attribute.value !== true) { if (attribute.type === 'Attribute' && attribute.value !== true) {
@ -316,11 +328,12 @@ const preprocessors = {
}); });
generator.blocks.push(node._block); generator.blocks.push(node._block);
preprocessChildren(generator, node._block, node._state, node); preprocessChildren(generator, node._block, node._state, node, stripWhitespace, nextSibling);
block.addDependencies(node._block.dependencies); block.addDependencies(node._block.dependencies);
node._block.hasUpdateMethod = node._block.dependencies.size > 0; node._block.hasUpdateMethod = node._block.dependencies.size > 0;
} else { } else {
preprocessChildren(generator, block, node._state, node); if (node.name === 'pre' || node.name === 'textarea') stripWhitespace = false;
preprocessChildren(generator, block, node._state, node, stripWhitespace, nextSibling);
} }
} }
}, },
@ -331,7 +344,8 @@ function preprocessChildren(
block: Block, block: Block,
state: State, state: State,
node: Node, node: Node,
isTopLevel: boolean = false stripWhitespace: boolean,
nextSibling: Node
) { ) {
// glue text nodes together // glue text nodes together
const cleaned: Node[] = []; const cleaned: Node[] = [];
@ -344,32 +358,22 @@ function preprocessChildren(
lastChild.data += child.data; lastChild.data += child.data;
lastChild.end = child.end; lastChild.end = child.end;
} else { } else {
cleaned.push(child); if (child.type === 'Text' && stripWhitespace && cleaned.length === 0) {
child.data = trimStart(child.data);
if (child.data) cleaned.push(child);
} else {
cleaned.push(child);
}
} }
lastChild = child; lastChild = child;
}); });
if (isTopLevel) {
// trim leading and trailing whitespace from the top level
const firstChild = cleaned[0];
if (firstChild && firstChild.type === 'Text') {
firstChild.data = trimStart(firstChild.data);
if (!firstChild.data) cleaned.shift();
}
const lastChild = cleaned[cleaned.length - 1];
if (lastChild && lastChild.type === 'Text') {
lastChild.data = trimEnd(lastChild.data);
if (!lastChild.data) cleaned.pop();
}
}
lastChild = null; lastChild = null;
cleaned.forEach((child: Node) => { cleaned.forEach((child: Node, i: number) => {
const preprocess = preprocessors[child.type]; const preprocessor = preprocessors[child.type];
if (preprocess) preprocess(generator, block, state, child); if (preprocessor) preprocessor(generator, block, state, child, stripWhitespace, cleaned[i + 1] || nextSibling);
if (lastChild) { if (lastChild) {
lastChild.next = child; lastChild.next = child;
@ -379,6 +383,19 @@ function preprocessChildren(
lastChild = child; lastChild = child;
}); });
// We want to remove trailing whitespace inside an element/component/block,
// *unless* there is no whitespace between this node and its next sibling
if (lastChild && lastChild.type === 'Text') {
if (stripWhitespace && (!nextSibling || (nextSibling.type === 'Text' && /^\s/.test(nextSibling.data)))) {
lastChild.data = trimEnd(lastChild.data);
if (!lastChild.data) {
cleaned.pop();
lastChild = cleaned[cleaned.length - 1];
lastChild.next = null;
}
}
}
if (lastChild) { if (lastChild) {
lastChild.needsAnchor = !state.parentNode; lastChild.needsAnchor = !state.parentNode;
} }
@ -415,7 +432,7 @@ export default function preprocess(
}; };
generator.blocks.push(block); generator.blocks.push(block);
preprocessChildren(generator, block, state, node, true); preprocessChildren(generator, block, state, node, true, null);
block.hasUpdateMethod = block.dependencies.size > 0; block.hasUpdateMethod = block.dependencies.size > 0;
return { block, state }; return { block, state };

@ -113,7 +113,7 @@ export default function ssr(
} }
`} `}
return \`${generator.renderCode}\`; return \`${generator.renderCode}\`.trim();
}; };
${name}.renderCss = function () { ${name}.renderCss = function () {

@ -76,39 +76,17 @@ export class Parser {
this.error('Unexpected end of input'); this.error('Unexpected end of input');
} }
// trim unnecessary whitespace if (this.html.children.length) {
while (this.html.children.length) { let start = this.html.children[0] && this.html.children[0].start;
const firstChild = this.html.children[0]; while (/\s/.test(template[start])) start += 1;
this.html.start = firstChild.start;
if (firstChild.type !== 'Text') break;
const length = firstChild.data.length;
firstChild.data = trimStart(firstChild.data);
if (firstChild.data === '') {
this.html.children.shift();
} else {
this.html.start += length - firstChild.data.length;
break;
}
}
while (this.html.children.length) {
const lastChild = this.html.children[this.html.children.length - 1];
this.html.end = lastChild.end;
if (lastChild.type !== 'Text') break;
const length = lastChild.data.length; let end = this.html.children[this.html.children.length - 1] && this.html.children[this.html.children.length - 1].end;
lastChild.data = trimEnd(lastChild.data); while (/\s/.test(template[end - 1])) end -= 1;
if (lastChild.data === '') { this.html.start = start;
this.html.children.pop(); this.html.end = end;
} else { } else {
this.html.end -= length - lastChild.data.length; this.html.start = this.html.end = null;
break;
}
} }
} }

@ -62,23 +62,6 @@ const disallowedContents = new Map([
['th', new Set(['td', 'th', 'tr'])], ['th', new Set(['td', 'th', 'tr'])],
]); ]);
function stripWhitespace(element) {
if (element.children.length) {
const firstChild = element.children[0];
const lastChild = element.children[element.children.length - 1];
if (firstChild.type === 'Text') {
firstChild.data = trimStart(firstChild.data);
if (!firstChild.data) element.children.shift();
}
if (lastChild.type === 'Text') {
lastChild.data = trimEnd(lastChild.data);
if (!lastChild.data) element.children.pop();
}
}
}
export default function tag(parser: Parser) { export default function tag(parser: Parser) {
const start = parser.index++; const start = parser.index++;
@ -147,9 +130,6 @@ export default function tag(parser: Parser) {
parent = parser.current(); parent = parser.current();
} }
// strip leading/trailing whitespace as necessary
stripWhitespace(parent);
parent.end = parser.index; parent.end = parser.index;
parser.stack.pop(); parser.stack.pop();
@ -158,8 +138,6 @@ export default function tag(parser: Parser) {
// can this be a child of the parent element, or does it implicitly // can this be a child of the parent element, or does it implicitly
// close it, like `<li>one<li>two`? // close it, like `<li>one<li>two`?
if (disallowedContents.get(parent.name).has(name)) { if (disallowedContents.get(parent.name).has(name)) {
stripWhitespace(parent);
parent.end = start; parent.end = start;
parser.stack.pop(); parser.stack.pop();
} }

@ -136,7 +136,7 @@ var proto = {
}; };
function create_main_fragment ( state, component ) { function create_main_fragment ( state, component ) {
var div, text, p, text_1, text_2, text_3, text_4, p_1, text_5, text_6, text_7, text_8, if_block_4_anchor; var div, text, p, text_1, text_2, text_3, text_4, p_1, text_5, text_6, text_8, if_block_4_anchor;
var if_block = (state.a) && create_if_block( state, component ); var if_block = (state.a) && create_if_block( state, component );
@ -164,7 +164,6 @@ function create_main_fragment ( state, component ) {
text_5 = createText( "so can this" ); text_5 = createText( "so can this" );
text_6 = createText( "\n\n\t" ); text_6 = createText( "\n\n\t" );
if ( if_block_3 ) if_block_3.create(); if ( if_block_3 ) if_block_3.create();
text_7 = createText( "\n\n\t" );
text_8 = createText( "\n\n" ); text_8 = createText( "\n\n" );
if ( if_block_4 ) if_block_4.create(); if ( if_block_4 ) if_block_4.create();
if_block_4_anchor = createComment(); if_block_4_anchor = createComment();
@ -185,7 +184,6 @@ function create_main_fragment ( state, component ) {
appendNode( text_5, p_1 ); appendNode( text_5, p_1 );
appendNode( text_6, div ); appendNode( text_6, div );
if ( if_block_3 ) if_block_3.mount( div, null ); if ( if_block_3 ) if_block_3.mount( div, null );
appendNode( text_7, div );
insertNode( text_8, target, anchor ); insertNode( text_8, target, anchor );
if ( if_block_4 ) if_block_4.mount( target, anchor ); if ( if_block_4 ) if_block_4.mount( target, anchor );
insertNode( if_block_4_anchor, target, anchor ); insertNode( if_block_4_anchor, target, anchor );
@ -232,7 +230,7 @@ function create_main_fragment ( state, component ) {
if ( !if_block_3 ) { if ( !if_block_3 ) {
if_block_3 = create_if_block_3( state, component ); if_block_3 = create_if_block_3( state, component );
if_block_3.create(); if_block_3.create();
if_block_3.mount( div, text_7 ); if_block_3.mount( div, null );
} }
} else if ( if_block_3 ) { } else if ( if_block_3 ) {
if_block_3.unmount(); if_block_3.unmount();

@ -1,7 +1,7 @@
import { appendNode, assign, createComment, createElement, createText, detachNode, dispatchObservers, insertNode, noop, proto } from "svelte/shared.js"; import { appendNode, assign, createComment, createElement, createText, detachNode, dispatchObservers, insertNode, noop, proto } from "svelte/shared.js";
function create_main_fragment ( state, component ) { function create_main_fragment ( state, component ) {
var div, text, p, text_1, text_2, text_3, text_4, p_1, text_5, text_6, text_7, text_8, if_block_4_anchor; var div, text, p, text_1, text_2, text_3, text_4, p_1, text_5, text_6, text_8, if_block_4_anchor;
var if_block = (state.a) && create_if_block( state, component ); var if_block = (state.a) && create_if_block( state, component );
@ -29,7 +29,6 @@ function create_main_fragment ( state, component ) {
text_5 = createText( "so can this" ); text_5 = createText( "so can this" );
text_6 = createText( "\n\n\t" ); text_6 = createText( "\n\n\t" );
if ( if_block_3 ) if_block_3.create(); if ( if_block_3 ) if_block_3.create();
text_7 = createText( "\n\n\t" );
text_8 = createText( "\n\n" ); text_8 = createText( "\n\n" );
if ( if_block_4 ) if_block_4.create(); if ( if_block_4 ) if_block_4.create();
if_block_4_anchor = createComment(); if_block_4_anchor = createComment();
@ -50,7 +49,6 @@ function create_main_fragment ( state, component ) {
appendNode( text_5, p_1 ); appendNode( text_5, p_1 );
appendNode( text_6, div ); appendNode( text_6, div );
if ( if_block_3 ) if_block_3.mount( div, null ); if ( if_block_3 ) if_block_3.mount( div, null );
appendNode( text_7, div );
insertNode( text_8, target, anchor ); insertNode( text_8, target, anchor );
if ( if_block_4 ) if_block_4.mount( target, anchor ); if ( if_block_4 ) if_block_4.mount( target, anchor );
insertNode( if_block_4_anchor, target, anchor ); insertNode( if_block_4_anchor, target, anchor );
@ -97,7 +95,7 @@ function create_main_fragment ( state, component ) {
if ( !if_block_3 ) { if ( !if_block_3 ) {
if_block_3 = create_if_block_3( state, component ); if_block_3 = create_if_block_3( state, component );
if_block_3.create(); if_block_3.create();
if_block_3.mount( div, text_7 ); if_block_3.mount( div, null );
} }
} else if ( if_block_3 ) { } else if ( if_block_3 ) {
if_block_3.unmount(); if_block_3.unmount();

@ -1,4 +1,5 @@
{ {
"hash": 3179574701,
"html": { "html": {
"start": 0, "start": 0,
"end": 45, "end": 45,
@ -21,9 +22,9 @@
"end": 32, "end": 32,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 22, "start": 22,
"end": 30, "end": 30,
"type": "Identifier",
"name": "readonly" "name": "readonly"
} }
} }
@ -36,4 +37,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,5 +1,5 @@
{ {
"hash": 3305933215, "hash": 2788845841,
"html": { "html": {
"start": 0, "start": 0,
"end": 29, "end": 29,

@ -1,4 +1,5 @@
{ {
"hash": 804348386,
"html": { "html": {
"start": 0, "start": 0,
"end": 46, "end": 46,
@ -27,9 +28,9 @@
"end": 28, "end": 28,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 21, "start": 21,
"end": 26, "end": 26,
"type": "Identifier",
"name": "color" "name": "color"
} }
}, },
@ -48,9 +49,9 @@
"end": 40, "end": 40,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 33, "start": 33,
"end": 38, "end": 38,
"type": "Identifier",
"name": "color" "name": "color"
} }
} }
@ -60,4 +61,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 1563956934,
"html": { "html": {
"start": 0, "start": 0,
"end": 41, "end": 41,
@ -31,4 +32,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 507039402,
"html": { "html": {
"start": 0, "start": 0,
"end": 28, "end": 28,
@ -45,4 +46,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,5 +1,5 @@
{ {
"hash": 4120363214, "hash": 1705925892,
"html": { "html": {
"start": 0, "start": 0,
"end": 10, "end": 10,
@ -18,9 +18,9 @@
"name": "id", "name": "id",
"value": [ "value": [
{ {
"type": "AttributeShorthand",
"start": 6, "start": 6,
"end": 8, "end": 8,
"type": "AttributeShorthand",
"expression": { "expression": {
"type": "Identifier", "type": "Identifier",
"start": 6, "start": 6,

@ -1,4 +1,5 @@
{ {
"hash": 606864228,
"html": { "html": {
"start": 0, "start": 0,
"end": 30, "end": 30,
@ -24,4 +25,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 1493227373,
"html": { "html": {
"start": 0, "start": 0,
"end": 23, "end": 23,
@ -31,4 +32,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 3488539025,
"html": { "html": {
"start": 0, "start": 0,
"end": 21, "end": 21,
@ -31,4 +32,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 3088875001,
"html": { "html": {
"start": 0, "start": 0,
"end": 18, "end": 18,
@ -29,4 +30,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 1937205193,
"html": { "html": {
"start": 0, "start": 0,
"end": 25, "end": 25,
@ -16,9 +17,9 @@
"type": "Binding", "type": "Binding",
"name": "value", "name": "value",
"value": { "value": {
"type": "Identifier",
"start": 19, "start": 19,
"end": 23, "end": 23,
"type": "Identifier",
"name": "name" "name": "name"
} }
} }
@ -29,4 +30,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 3294612990,
"html": { "html": {
"start": 0, "start": 0,
"end": 18, "end": 18,
@ -14,4 +15,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 2365862121,
"html": { "html": {
"start": 0, "start": 0,
"end": 24, "end": 24,
@ -23,4 +24,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 156753432,
"html": { "html": {
"start": 0, "start": 0,
"end": 17, "end": 17,
@ -14,4 +15,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 1147407419,
"html": { "html": {
"start": 0, "start": 0,
"end": 14, "end": 14,
@ -18,6 +19,12 @@
"data": "foo" "data": "foo"
} }
] ]
},
{
"start": 14,
"end": 16,
"type": "Text",
"data": "\n\n"
} }
] ]
}, },
@ -25,65 +32,65 @@
"start": 16, "start": 16,
"end": 56, "end": 56,
"attributes": [], "attributes": [],
"content": {
"start": 23,
"end": 48,
"styles": "\n\tdiv {\n\t\tcolor: red;\n\t}\n"
},
"children": [ "children": [
{ {
"type": "Rule", "type": "Rule",
"start": 25,
"end": 47,
"selector": { "selector": {
"type": "SelectorList", "type": "SelectorList",
"start": 25,
"end": 28,
"children": [ "children": [
{ {
"type": "Selector", "type": "Selector",
"start": 25,
"end": 28,
"children": [ "children": [
{ {
"type": "TypeSelector", "type": "TypeSelector",
"name": "div",
"start": 25, "start": 25,
"end": 28, "end": 28
"name": "div"
} }
] ],
"start": 25,
"end": 28
} }
] ],
"start": 25,
"end": 28
}, },
"block": { "block": {
"type": "Block", "type": "Block",
"start": 29,
"end": 47,
"children": [ "children": [
{ {
"type": "Declaration", "type": "Declaration",
"start": 33,
"end": 43,
"important": false, "important": false,
"property": "color", "property": "color",
"value": { "value": {
"type": "Value", "type": "Value",
"start": 39,
"end": 43,
"children": [ "children": [
{ {
"type": "Identifier", "type": "Identifier",
"name": "red",
"start": 40, "start": 40,
"end": 43, "end": 43
"name": "red"
} }
] ],
} "start": 39,
"end": 43
},
"start": 33,
"end": 43
} }
] ],
} "start": 29,
"end": 47
},
"start": 25,
"end": 47
} }
] ],
"content": {
"start": 23,
"end": 48,
"styles": "\n\tdiv {\n\t\tcolor: red;\n\t}\n"
}
}, },
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 3238289871,
"html": { "html": {
"start": 0, "start": 0,
"end": 84, "end": 84,
@ -9,12 +10,11 @@
"end": 84, "end": 84,
"type": "EachBlock", "type": "EachBlock",
"expression": { "expression": {
"type": "Identifier",
"start": 8, "start": 8,
"end": 15, "end": 15,
"type": "Identifier",
"name": "animals" "name": "animals"
}, },
"context": "animal",
"children": [ "children": [
{ {
"start": 29, "start": 29,
@ -28,40 +28,41 @@
"end": 42, "end": 42,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 34, "start": 34,
"end": 40, "end": 40,
"type": "Identifier",
"name": "animal" "name": "animal"
} }
} }
] ]
} }
], ],
"context": "animal",
"else": { "else": {
"start": 55,
"end": 75,
"type": "ElseBlock",
"children": [ "children": [
{ {
"start": 57,
"end": 74,
"type": "Element",
"name": "p",
"attributes": [], "attributes": [],
"children": [ "children": [
{ {
"data": "no animals",
"end": 70,
"start": 60, "start": 60,
"type": "Text" "end": 70,
"type": "Text",
"data": "no animals"
} }
], ]
"end": 74,
"name": "p",
"start": 57,
"type": "Element"
} }
], ]
"end": 75,
"start": 55,
"type": "ElseBlock"
} }
} }
] ]
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 2841674990,
"html": { "html": {
"start": 0, "start": 0,
"end": 66, "end": 66,
@ -9,13 +10,11 @@
"end": 66, "end": 66,
"type": "EachBlock", "type": "EachBlock",
"expression": { "expression": {
"type": "Identifier",
"start": 8, "start": 8,
"end": 15, "end": 15,
"type": "Identifier",
"name": "animals" "name": "animals"
}, },
"context": "animal",
"index": "i",
"children": [ "children": [
{ {
"start": 32, "start": 32,
@ -29,9 +28,9 @@
"end": 40, "end": 40,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 37, "start": 37,
"end": 38, "end": 38,
"type": "Identifier",
"name": "i" "name": "i"
} }
}, },
@ -46,18 +45,20 @@
"end": 52, "end": 52,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 44, "start": 44,
"end": 50, "end": 50,
"type": "Identifier",
"name": "animal" "name": "animal"
} }
} }
] ]
} }
] ],
"context": "animal",
"index": "i"
} }
] ]
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 2025411181,
"html": { "html": {
"start": 0, "start": 0,
"end": 54, "end": 54,
@ -9,13 +10,11 @@
"end": 54, "end": 54,
"type": "EachBlock", "type": "EachBlock",
"expression": { "expression": {
"type": "Identifier",
"start": 8, "start": 8,
"end": 13, "end": 13,
"type": "Identifier",
"name": "todos" "name": "todos"
}, },
"context": "todo",
"key": "id",
"children": [ "children": [
{ {
"start": 29, "start": 29,
@ -29,18 +28,20 @@
"end": 40, "end": 40,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 34, "start": 34,
"end": 38, "end": 38,
"type": "Identifier",
"name": "todo" "name": "todo"
} }
} }
] ]
} }
] ],
"context": "todo",
"key": "id"
} }
] ]
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 220340986,
"html": { "html": {
"start": 0, "start": 0,
"end": 56, "end": 56,
@ -9,12 +10,11 @@
"end": 56, "end": 56,
"type": "EachBlock", "type": "EachBlock",
"expression": { "expression": {
"type": "Identifier",
"start": 8, "start": 8,
"end": 15, "end": 15,
"type": "Identifier",
"name": "animals" "name": "animals"
}, },
"context": "animal",
"children": [ "children": [
{ {
"start": 29, "start": 29,
@ -28,18 +28,19 @@
"end": 42, "end": 42,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 34, "start": 34,
"end": 40, "end": 40,
"type": "Identifier",
"name": "animal" "name": "animal"
} }
} }
] ]
} }
] ],
"context": "animal"
} }
] ]
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 1265376132,
"html": { "html": {
"start": 0, "start": 0,
"end": 24, "end": 24,
@ -22,9 +23,9 @@
"end": 18, "end": 18,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 12, "start": 12,
"end": 16, "end": 16,
"type": "Identifier",
"name": "name" "name": "name"
} }
}, },
@ -40,4 +41,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 611274658,
"html": { "html": {
"start": 0, "start": 0,
"end": 17, "end": 17,
@ -23,4 +24,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,23 +1,28 @@
{ {
"html": { "hash": 825536165,
"start": 0, "html": {
"end": 15, "start": 0,
"type": "Fragment", "end": 15,
"children": [{ "type": "Fragment",
"attributes": [{ "children": [
"end": 14, {
"name": "html", "start": 0,
"start": 10, "end": 15,
"type": "Attribute", "type": "Element",
"value": true "name": "!doctype",
}], "attributes": [
"children": [], {
"end": 15, "start": 10,
"name": "!doctype", "end": 14,
"start": 0, "type": "Attribute",
"type": "Element" "name": "html",
}] "value": true
}, }
"css": null, ],
"js": null "children": []
} }
]
},
"css": null,
"js": null
}

@ -1,4 +1,5 @@
{ {
"hash": 4260626221,
"html": { "html": {
"start": 0, "start": 0,
"end": 101, "end": 101,
@ -16,48 +17,48 @@
"type": "EventHandler", "type": "EventHandler",
"name": "click", "name": "click",
"expression": { "expression": {
"type": "CallExpression",
"start": 18, "start": 18,
"end": 44, "end": 44,
"type": "CallExpression",
"callee": { "callee": {
"type": "Identifier",
"start": 18, "start": 18,
"end": 21, "end": 21,
"type": "Identifier",
"name": "set" "name": "set"
}, },
"arguments": [ "arguments": [
{ {
"type": "ObjectExpression",
"start": 22, "start": 22,
"end": 43, "end": 43,
"type": "ObjectExpression",
"properties": [ "properties": [
{ {
"type": "Property",
"start": 24, "start": 24,
"end": 41, "end": 41,
"type": "Property",
"kind": "init",
"computed": false,
"method": false, "method": false,
"shorthand": false, "shorthand": false,
"computed": false,
"key": { "key": {
"type": "Identifier",
"start": 24, "start": 24,
"end": 31, "end": 31,
"type": "Identifier",
"name": "visible" "name": "visible"
}, },
"value": { "value": {
"type": "UnaryExpression",
"start": 33, "start": 33,
"end": 41, "end": 41,
"type": "UnaryExpression",
"operator": "!", "operator": "!",
"prefix": true, "prefix": true,
"argument": { "argument": {
"type": "Identifier",
"start": 34, "start": 34,
"end": 41, "end": 41,
"type": "Identifier",
"name": "visible" "name": "visible"
} }
} },
"kind": "init"
} }
] ]
} }
@ -67,10 +68,10 @@
], ],
"children": [ "children": [
{ {
"data": "toggle",
"start": 46, "start": 46,
"end": 52, "end": 52,
"type": "Text" "type": "Text",
"data": "toggle"
} }
] ]
}, },
@ -85,10 +86,10 @@
"end": 101, "end": 101,
"type": "IfBlock", "type": "IfBlock",
"expression": { "expression": {
"end": 76, "type": "Identifier",
"name": "visible",
"start": 69, "start": 69,
"type": "Identifier" "end": 76,
"name": "visible"
}, },
"children": [ "children": [
{ {
@ -99,10 +100,10 @@
"attributes": [], "attributes": [],
"children": [ "children": [
{ {
"data": "hello!",
"end": 89,
"start": 83, "start": 83,
"type": "Text" "end": 89,
"type": "Text",
"data": "hello!"
} }
] ]
} }
@ -112,4 +113,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 3134964533,
"html": { "html": {
"start": 0, "start": 0,
"end": 56, "end": 56,
@ -9,9 +10,9 @@
"end": 56, "end": 56,
"type": "IfBlock", "type": "IfBlock",
"expression": { "expression": {
"type": "Identifier",
"start": 6, "start": 6,
"end": 9, "end": 9,
"type": "Identifier",
"name": "foo" "name": "foo"
}, },
"children": [ "children": [
@ -58,4 +59,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 985817334,
"html": { "html": {
"start": 0, "start": 0,
"end": 93, "end": 93,
@ -9,20 +10,20 @@
"end": 93, "end": 93,
"type": "IfBlock", "type": "IfBlock",
"expression": { "expression": {
"type": "BinaryExpression",
"start": 6, "start": 6,
"end": 12, "end": 12,
"type": "BinaryExpression",
"operator": ">",
"left": { "left": {
"type": "Identifier",
"start": 6, "start": 6,
"end": 7, "end": 7,
"type": "Identifier",
"name": "x" "name": "x"
}, },
"operator": ">",
"right": { "right": {
"type": "Literal",
"start": 10, "start": 10,
"end": 12, "end": 12,
"type": "Literal",
"value": 10, "value": 10,
"raw": "10" "raw": "10"
} }
@ -55,20 +56,20 @@
"type": "IfBlock", "type": "IfBlock",
"elseif": true, "elseif": true,
"expression": { "expression": {
"type": "BinaryExpression",
"start": 53, "start": 53,
"end": 58, "end": 58,
"type": "BinaryExpression",
"operator": "<",
"left": { "left": {
"type": "Identifier",
"start": 53, "start": 53,
"end": 54, "end": 54,
"type": "Identifier",
"name": "x" "name": "x"
}, },
"operator": "<",
"right": { "right": {
"type": "Literal",
"start": 57, "start": 57,
"end": 58, "end": 58,
"type": "Literal",
"value": 5, "value": 5,
"raw": "5" "raw": "5"
} }
@ -98,4 +99,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 2374871934,
"html": { "html": {
"start": 0, "start": 0,
"end": 21, "end": 21,
@ -9,9 +10,9 @@
"end": 21, "end": 21,
"type": "IfBlock", "type": "IfBlock",
"expression": { "expression": {
"type": "Identifier",
"start": 6, "start": 6,
"end": 9, "end": 9,
"type": "Identifier",
"name": "foo" "name": "foo"
}, },
"children": [ "children": [
@ -27,4 +28,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,5 +1,5 @@
{ {
"hash": 3806276940, "hash": 126082492,
"html": { "html": {
"start": 0, "start": 0,
"end": 31, "end": 31,
@ -12,6 +12,12 @@
"name": "ul", "name": "ul",
"attributes": [], "attributes": [],
"children": [ "children": [
{
"start": 4,
"end": 6,
"type": "Text",
"data": "\n\t"
},
{ {
"start": 6, "start": 6,
"end": 13, "end": 13,
@ -23,7 +29,7 @@
"start": 10, "start": 10,
"end": 13, "end": 13,
"type": "Text", "type": "Text",
"data": "a" "data": "a\n\t"
} }
] ]
}, },
@ -38,7 +44,7 @@
"start": 17, "start": 17,
"end": 20, "end": 20,
"type": "Text", "type": "Text",
"data": "b" "data": "b\n\t"
} }
] ]
}, },

@ -1,5 +1,5 @@
{ {
"hash": 2678229240, "hash": 4049070444,
"html": { "html": {
"start": 0, "start": 0,
"end": 19, "end": 19,

@ -1,4 +1,5 @@
{ {
"hash": 183399343,
"html": { "html": {
"start": 0, "start": 0,
"end": 30, "end": 30,
@ -11,14 +12,20 @@
"name": "p", "name": "p",
"attributes": [], "attributes": [],
"children": [ "children": [
{
"start": 3,
"end": 4,
"type": "Text",
"data": " "
},
{ {
"start": 4, "start": 4,
"end": 14, "end": 14,
"type": "RawMustacheTag", "type": "RawMustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 7, "start": 7,
"end": 11, "end": 11,
"type": "Identifier",
"name": "raw1" "name": "raw1"
} }
}, },
@ -33,11 +40,17 @@
"end": 25, "end": 25,
"type": "RawMustacheTag", "type": "RawMustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 18, "start": 18,
"end": 22, "end": 22,
"type": "Identifier",
"name": "raw2" "name": "raw2"
} }
},
{
"start": 25,
"end": 26,
"type": "Text",
"data": " "
} }
] ]
} }
@ -45,4 +58,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 850398275,
"html": { "html": {
"start": 0, "start": 0,
"end": 25, "end": 25,
@ -23,4 +24,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 3451341610,
"html": { "html": {
"start": 0, "start": 0,
"end": 11, "end": 11,
@ -11,9 +12,15 @@
"name": "div", "name": "div",
"attributes": [], "attributes": [],
"children": [] "children": []
},
{
"start": 11,
"end": 13,
"type": "Text",
"data": "\n\n"
} }
] ]
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,4 +1,5 @@
{ {
"hash": 1378757574,
"html": { "html": {
"start": 0, "start": 0,
"end": 24, "end": 24,
@ -22,9 +23,9 @@
"end": 18, "end": 18,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 12, "start": 12,
"end": 16, "end": 16,
"type": "Identifier",
"name": "name" "name": "name"
} }
}, },
@ -35,6 +36,12 @@
"data": "!" "data": "!"
} }
] ]
},
{
"start": 24,
"end": 26,
"type": "Text",
"data": "\n\n"
} }
] ]
}, },
@ -49,73 +56,73 @@
"end": 134, "end": 134,
"body": [ "body": [
{ {
"type": "ExportDefaultDeclaration",
"start": 36,
"end": 95,
"declaration": { "declaration": {
"type": "ObjectExpression",
"start": 51, "start": 51,
"end": 94, "end": 94,
"type": "ObjectExpression",
"properties": [ "properties": [
{ {
"type": "Property",
"start": 55, "start": 55,
"end": 91, "end": 91,
"type": "Property", "method": false,
"shorthand": false,
"computed": false, "computed": false,
"key": { "key": {
"type": "Identifier",
"start": 55, "start": 55,
"end": 59, "end": 59,
"type": "Identifier",
"name": "data" "name": "data"
}, },
"kind": "init",
"method": false,
"shorthand": false,
"value": { "value": {
"type": "ArrowFunctionExpression",
"start": 61, "start": 61,
"end": 91, "end": 91,
"type": "ArrowFunctionExpression", "id": null,
"generator": false,
"expression": true,
"async": false, "async": false,
"params": [],
"body": { "body": {
"type": "ObjectExpression",
"start": 68, "start": 68,
"end": 90, "end": 90,
"type": "ObjectExpression",
"properties": [ "properties": [
{ {
"type": "Property",
"start": 73, "start": 73,
"end": 86, "end": 86,
"type": "Property", "method": false,
"shorthand": false,
"computed": false, "computed": false,
"key": { "key": {
"type": "Identifier",
"start": 73, "start": 73,
"end": 77, "end": 77,
"type": "Identifier",
"name": "name" "name": "name"
}, },
"kind": "init",
"method": false,
"shorthand": false,
"value": { "value": {
"type": "Literal",
"start": 79, "start": 79,
"end": 86, "end": 86,
"type": "Literal", "value": "world",
"raw": "'world'", "raw": "'world'"
"value": "world" },
} "kind": "init"
} }
] ]
}, }
"expression": true, },
"generator": false, "kind": "init"
"id": null,
"params": []
}
} }
] ]
}, }
"end": 95,
"start": 36,
"type": "ExportDefaultDeclaration"
} }
], ],
"sourceType": "module" "sourceType": "module"
} }
} }
} }

@ -1,4 +1,5 @@
{ {
"hash": 619854804,
"html": { "html": {
"start": 0, "start": 0,
"end": 24, "end": 24,
@ -22,9 +23,9 @@
"end": 18, "end": 18,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 12, "start": 12,
"end": 16, "end": 16,
"type": "Identifier",
"name": "name" "name": "name"
} }
}, },
@ -35,6 +36,12 @@
"data": "!" "data": "!"
} }
] ]
},
{
"start": 24,
"end": 26,
"type": "Text",
"data": "\n\n"
} }
] ]
}, },
@ -49,73 +56,73 @@
"end": 123, "end": 123,
"body": [ "body": [
{ {
"type": "ExportDefaultDeclaration",
"start": 36,
"end": 95,
"declaration": { "declaration": {
"type": "ObjectExpression",
"start": 51, "start": 51,
"end": 94, "end": 94,
"type": "ObjectExpression",
"properties": [ "properties": [
{ {
"type": "Property",
"start": 55, "start": 55,
"end": 91, "end": 91,
"type": "Property", "method": false,
"shorthand": false,
"computed": false, "computed": false,
"key": { "key": {
"type": "Identifier",
"start": 55, "start": 55,
"end": 59, "end": 59,
"type": "Identifier",
"name": "data" "name": "data"
}, },
"kind": "init",
"method": false,
"shorthand": false,
"value": { "value": {
"type": "ArrowFunctionExpression",
"start": 61, "start": 61,
"end": 91, "end": 91,
"type": "ArrowFunctionExpression", "id": null,
"generator": false,
"expression": true,
"async": false, "async": false,
"params": [],
"body": { "body": {
"type": "ObjectExpression",
"start": 68, "start": 68,
"end": 90, "end": 90,
"type": "ObjectExpression",
"properties": [ "properties": [
{ {
"type": "Property",
"start": 73, "start": 73,
"end": 86, "end": 86,
"type": "Property", "method": false,
"shorthand": false,
"computed": false, "computed": false,
"key": { "key": {
"type": "Identifier",
"start": 73, "start": 73,
"end": 77, "end": 77,
"type": "Identifier",
"name": "name" "name": "name"
}, },
"kind": "init",
"method": false,
"shorthand": false,
"value": { "value": {
"type": "Literal",
"start": 79, "start": 79,
"end": 86, "end": 86,
"type": "Literal", "value": "world",
"raw": "'world'", "raw": "'world'"
"value": "world" },
} "kind": "init"
} }
] ]
}, }
"expression": true, },
"generator": false, "kind": "init"
"id": null,
"params": []
}
} }
] ]
}, }
"end": 95,
"start": 36,
"type": "ExportDefaultDeclaration"
} }
], ],
"sourceType": "module" "sourceType": "module"
} }
} }
} }

@ -1,4 +1,5 @@
{ {
"hash": 388108696,
"html": { "html": {
"start": 0, "start": 0,
"end": 24, "end": 24,
@ -22,9 +23,9 @@
"end": 18, "end": 18,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 12, "start": 12,
"end": 16, "end": 16,
"type": "Identifier",
"name": "name" "name": "name"
} }
}, },
@ -35,6 +36,12 @@
"data": "!" "data": "!"
} }
] ]
},
{
"start": 24,
"end": 26,
"type": "Text",
"data": "\n\n"
} }
] ]
}, },
@ -49,73 +56,73 @@
"end": 96, "end": 96,
"body": [ "body": [
{ {
"type": "ExportDefaultDeclaration",
"start": 36,
"end": 95,
"declaration": { "declaration": {
"type": "ObjectExpression",
"start": 51, "start": 51,
"end": 94, "end": 94,
"type": "ObjectExpression",
"properties": [ "properties": [
{ {
"type": "Property",
"start": 55, "start": 55,
"end": 91, "end": 91,
"type": "Property", "method": false,
"shorthand": false,
"computed": false, "computed": false,
"key": { "key": {
"type": "Identifier",
"start": 55, "start": 55,
"end": 59, "end": 59,
"type": "Identifier",
"name": "data" "name": "data"
}, },
"kind": "init",
"method": false,
"shorthand": false,
"value": { "value": {
"type": "ArrowFunctionExpression",
"start": 61, "start": 61,
"end": 91, "end": 91,
"type": "ArrowFunctionExpression", "id": null,
"generator": false,
"expression": true,
"async": false, "async": false,
"params": [],
"body": { "body": {
"type": "ObjectExpression",
"start": 68, "start": 68,
"end": 90, "end": 90,
"type": "ObjectExpression",
"properties": [ "properties": [
{ {
"type": "Property",
"start": 73, "start": 73,
"end": 86, "end": 86,
"type": "Property", "method": false,
"shorthand": false,
"computed": false, "computed": false,
"key": { "key": {
"type": "Identifier",
"start": 73, "start": 73,
"end": 77, "end": 77,
"type": "Identifier",
"name": "name" "name": "name"
}, },
"kind": "init",
"method": false,
"shorthand": false,
"value": { "value": {
"type": "Literal",
"start": 79, "start": 79,
"end": 86, "end": 86,
"type": "Literal", "value": "world",
"raw": "'world'", "raw": "'world'"
"value": "world" },
} "kind": "init"
} }
] ]
}, }
"expression": true, },
"generator": false, "kind": "init"
"id": null,
"params": []
}
} }
] ]
}, }
"end": 95,
"start": 36,
"type": "ExportDefaultDeclaration"
} }
], ],
"sourceType": "module" "sourceType": "module"
} }
} }
} }

@ -1,4 +1,5 @@
{ {
"hash": 4200201687,
"html": { "html": {
"start": 0, "start": 0,
"end": 6, "end": 6,
@ -16,4 +17,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,5 +1,5 @@
{ {
"hash": 1792372370, "hash": 216762188,
"html": { "html": {
"start": 0, "start": 0,
"end": 57, "end": 57,

@ -1,4 +1,5 @@
{ {
"hash": 1185019088,
"html": { "html": {
"start": 0, "start": 0,
"end": 30, "end": 30,
@ -11,14 +12,20 @@
"name": "p", "name": "p",
"attributes": [], "attributes": [],
"children": [ "children": [
{
"start": 3,
"end": 4,
"type": "Text",
"data": " "
},
{ {
"start": 4, "start": 4,
"end": 9, "end": 9,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 6, "start": 6,
"end": 7, "end": 7,
"type": "Identifier",
"name": "a" "name": "a"
} }
}, },
@ -33,9 +40,9 @@
"end": 15, "end": 15,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 12, "start": 12,
"end": 13, "end": 13,
"type": "Identifier",
"name": "b" "name": "b"
} }
}, },
@ -50,9 +57,9 @@
"end": 23, "end": 23,
"type": "MustacheTag", "type": "MustacheTag",
"expression": { "expression": {
"type": "Identifier",
"start": 20, "start": 20,
"end": 21, "end": 21,
"type": "Identifier",
"name": "c" "name": "c"
} }
}, },
@ -60,7 +67,7 @@
"start": 23, "start": 23,
"end": 26, "end": 26,
"type": "Text", "type": "Text",
"data": " :" "data": " : "
} }
] ]
} }
@ -68,4 +75,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -1,5 +1,5 @@
{ {
"hash": 3618147195, "hash": 2992234421,
"html": { "html": {
"start": 0, "start": 0,
"end": 63, "end": 63,

@ -1,5 +1,5 @@
{ {
"hash": 1535528483, "hash": 503236647,
"html": { "html": {
"start": 0, "start": 0,
"end": 27, "end": 27,

@ -1,5 +1,5 @@
{ {
"hash": 3160753914, "hash": 3731674194,
"html": { "html": {
"start": 0, "start": 0,
"end": 43, "end": 43,
@ -19,18 +19,17 @@
"intro": true, "intro": true,
"outro": false, "outro": false,
"expression": { "expression": {
"start": 15,
"end": 27,
"type": "ObjectExpression", "type": "ObjectExpression",
"start": 15,
"end": 27,
"properties": [ "properties": [
{ {
"type": "Property",
"start": 16, "start": 16,
"end": 26, "end": 26,
"type": "Property",
"method": false, "method": false,
"computed": false,
"shorthand": false, "shorthand": false,
"kind": "init", "computed": false,
"key": { "key": {
"type": "Identifier", "type": "Identifier",
"start": 16, "start": 16,
@ -38,12 +37,13 @@
"name": "opacity" "name": "opacity"
}, },
"value": { "value": {
"type": "Literal",
"start": 25, "start": 25,
"end": 26, "end": 26,
"type": "Literal",
"value": 0, "value": 0,
"raw": "0" "raw": "0"
} },
"kind": "init"
} }
] ]
} }

@ -1,9 +1,16 @@
{ {
"hash": 424837432,
"html": { "html": {
"start": 6, "start": 6,
"end": 36, "end": 36,
"type": "Fragment", "type": "Fragment",
"children": [ "children": [
{
"start": 0,
"end": 6,
"type": "Text",
"data": "\n\n\t\t\t\t"
},
{ {
"start": 6, "start": 6,
"end": 36, "end": 36,
@ -23,4 +30,4 @@
}, },
"css": null, "css": null,
"js": null "js": null
} }

@ -0,0 +1 @@
<h1>Hello <strong>{{name}}! </strong><span>How are you?</span></h1>

@ -0,0 +1,68 @@
{
"hash": 2961389466,
"html": {
"start": 0,
"end": 67,
"type": "Fragment",
"children": [
{
"start": 0,
"end": 67,
"type": "Element",
"name": "h1",
"attributes": [],
"children": [
{
"start": 4,
"end": 10,
"type": "Text",
"data": "Hello "
},
{
"start": 10,
"end": 37,
"type": "Element",
"name": "strong",
"attributes": [],
"children": [
{
"start": 18,
"end": 26,
"type": "MustacheTag",
"expression": {
"type": "Identifier",
"start": 20,
"end": 24,
"name": "name"
}
},
{
"start": 26,
"end": 28,
"type": "Text",
"data": "! "
}
]
},
{
"start": 37,
"end": 62,
"type": "Element",
"name": "span",
"attributes": [],
"children": [
{
"start": 43,
"end": 55,
"type": "Text",
"data": "How are you?"
}
]
}
]
}
]
},
"css": null,
"js": null
}

@ -1,14 +1,17 @@
{ {
"html": { "hash": 3659433152,
"start": 0, "html": {
"end": 9, "start": 0,
"type": "Fragment", "end": 9,
"children": [ "type": "Fragment",
{ "children": [
"start": 0, {
"end": 9, "start": 0,
"type": "YieldTag" "end": 9,
} "type": "YieldTag"
] }
} ]
} },
"css": null,
"js": null
}

@ -0,0 +1,13 @@
// this file will replace all the expected.js and expected-bundle.js files with
// their _actual equivalents. Only use it when you're sure that you haven't
// broken anything!
const fs = require("fs");
const glob = require("glob");
glob.sync("samples/*/_actual.json", { cwd: __dirname }).forEach(file => {
const actual = fs.readFileSync(`${__dirname}/${file}`, "utf-8");
fs.writeFileSync(
`${__dirname}/${file.replace("_actual", "output")}`,
actual
);
});

@ -0,0 +1,12 @@
export default {
data: {
name: 'world'
},
test ( assert, component, target ) {
assert.equal(
target.textContent,
`Hello world! How are you?`
);
}
};

@ -0,0 +1 @@
<h1>Hello <strong>{{name}}! </strong><span>How are you?</span></h1>

@ -1,4 +1,6 @@
<div><p>foo: lol</p> <div>
<p>foo: lol</p>
<p>baz: 42 (number)</p> <p>baz: 42 (number)</p>
<p>qux: this is a piece of string</p> <p>qux: this is a piece of string</p>
<p>quux: core</p></div> <p>quux: core</p>
</div>

@ -1 +1,3 @@
<div><p>foo: ''</p></div> <div>
<p>foo: ''</p>
</div>

@ -1,2 +1,4 @@
<div><p>foo: bar</p> <div>
<p>baz: 42 (number)</p></div> <p>foo: bar</p>
<p>baz: 42 (number)</p>
</div>

@ -1 +1,3 @@
<div><p>Hello</p></div> <div>
<p>Hello</p>
</div>

@ -1 +1,3 @@
<div><p>i am a widget</p></div> <div>
<p>i am a widget</p>
</div>
Loading…
Cancel
Save