Delete actual.json files out of source control

This commit is contained in:
Patrick Steele-Idem 2015-12-03 16:19:56 -07:00
parent c78076f877
commit cb1d2b507e
2 changed files with 0 additions and 151 deletions

View File

@ -1,16 +0,0 @@
{
"type": "TemplateRoot",
"body": [
{
"type": "Assignment",
"left": "a",
"right": "1"
}
],
"staticVars": {
"str": "__helpers.s",
"empty": "__helpers.e",
"notEmpty": "__helpers.ne",
"escapeXml": "__helpers.x"
}
}

View File

@ -1,135 +0,0 @@
{
"type": "TemplateRoot",
"body": [
{
"type": "FunctionDeclaration",
"name": "create",
"params": [
"__helpers"
],
"body": [
{
"type": "Vars",
"kind": "var",
"declarations": [
{
"id": "str",
"init": "__helpers.s"
},
{
"id": "empty",
"init": "__helpers.e"
},
{
"id": "notEmpty",
"init": "__helpers.ne"
}
]
},
{
"type": "Return",
"argument": {
"type": "FunctionDeclaration",
"name": "render",
"params": [
"data",
"out"
],
"body": [
{
"type": "TextOutput",
"argument": {
"type": "Literal",
"value": "Hello"
}
},
{
"type": "HtmlOutput",
"argument": "data.name"
},
{
"type": "TextOutput",
"argument": {
"type": "Literal",
"value": "!"
}
},
{
"type": "If",
"test": {
"type": "FunctionCall",
"callee": "notEmpty",
"args": [
"data.colors"
]
},
"body": [
{
"type": "HtmlElement",
"tagName": "ul",
"_attributes": [
{
"name": "class",
"value": {
"type": "Literal",
"value": "colors"
}
}
],
"body": [
{
"type": "FunctionCall",
"callee": "forEach",
"args": [
"data.colors",
{
"type": "FunctionDeclaration",
"name": null,
"params": [
"color"
],
"body": [
{
"type": "HtmlElement",
"tagName": "li",
"_attributes": [
{
"name": "class",
"value": {
"type": "Literal",
"value": "color"
}
}
],
"body": [
{
"type": "TextOutput",
"argument": "color"
}
],
"allowSelfClosing": false,
"startTagOnly": false
}
]
}
]
}
],
"allowSelfClosing": false,
"startTagOnly": false
}
]
}
]
}
}
]
}
],
"staticVars": {
"str": "__helpers.s",
"empty": "__helpers.e",
"notEmpty": "__helpers.ne",
"escapeXml": "__helpers.x"
}
}