mirror of
https://github.com/marko-js/marko.git
synced 2026-02-01 16:07:13 +00:00
fix(compiler): improve hash template id performance and consistency
This commit is contained in:
parent
4b679de133
commit
d11174853f
@ -20,7 +20,7 @@
|
||||
"he": "^1.1.0",
|
||||
"htmljs-parser": "^2.7.1",
|
||||
"jsesc": "^2.5.2",
|
||||
"lasso-modules-client": "^2.0.4",
|
||||
"lasso-package-root": "^1.0.1",
|
||||
"resolve-from": "^5.0.0",
|
||||
"self-closing-tags": "^1.0.1",
|
||||
"strip-ansi": "^5.2.0"
|
||||
|
||||
@ -3,11 +3,19 @@ import { types as t } from "@marko/babel-types";
|
||||
import { File } from "@babel/core";
|
||||
import { parse, parseExpression } from "@babel/parser";
|
||||
import { codeFrameColumns } from "@babel/code-frame";
|
||||
import { getClientPath } from "lasso-modules-client/transport";
|
||||
import { getRootDir } from "lasso-package-root";
|
||||
import { buildLookup } from "../taglib";
|
||||
import { getLoc, getLocRange } from "./util/pos-to-loc";
|
||||
import checksum from "./util/checksum";
|
||||
const CWD = process.cwd();
|
||||
let ROOT;
|
||||
|
||||
try {
|
||||
ROOT = getRootDir(CWD);
|
||||
} catch {
|
||||
ROOT = CWD;
|
||||
}
|
||||
|
||||
const toPosix =
|
||||
path.sep === "/"
|
||||
? v => v
|
||||
@ -42,6 +50,7 @@ export class MarkoFile extends File {
|
||||
}
|
||||
);
|
||||
|
||||
const id = path.relative(ROOT, filename);
|
||||
this.ast.start = this.ast.program.start = 0;
|
||||
this.ast.end = this.ast.program.end = code.length - 1;
|
||||
this.ast.loc = this.ast.program.loc = {
|
||||
@ -57,9 +66,7 @@ export class MarkoFile extends File {
|
||||
this._seenTagDefs = new Set();
|
||||
this._watchFiles = new Set();
|
||||
this.metadata.marko = {
|
||||
id: markoOptions.isProduction
|
||||
? checksum(this.getClientPath(filename))
|
||||
: path.relative(CWD, filename),
|
||||
id: markoOptions.isProduction ? checksum(id) : id,
|
||||
deps: [],
|
||||
tags: []
|
||||
};
|
||||
@ -120,10 +127,6 @@ export class MarkoFile extends File {
|
||||
return tagDef;
|
||||
}
|
||||
|
||||
getClientPath(filename) {
|
||||
return getClientPath(filename);
|
||||
}
|
||||
|
||||
resolveRelativePath(request) {
|
||||
if (request[0] === ".") {
|
||||
return request;
|
||||
|
||||
@ -1,11 +1,8 @@
|
||||
import { createHash } from "crypto";
|
||||
|
||||
export default function checksum(filename) {
|
||||
const hash = createHash("sha1");
|
||||
hash.update(filename);
|
||||
return hash
|
||||
return createHash("MD5")
|
||||
.update(filename)
|
||||
.digest("base64")
|
||||
.slice(0, 8)
|
||||
.replace(/\//g, "-")
|
||||
.replace(/\+/g, "_");
|
||||
.slice(0, 8);
|
||||
}
|
||||
|
||||
@ -5,7 +5,7 @@ import _customTag from "./components/custom-tag/index.marko";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "bDkB18_l",
|
||||
const _marko_componentType = "cY5vQoUJ",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
let _thing = null;
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("bDkB18_l", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("cY5vQoUJ", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import _hello from "./components/hello/index.marko";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "nBMtH030",
|
||||
const _marko_componentType = "EC7Wpjet",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
const _items = [];
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("nBMtH030", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("EC7Wpjet", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -4,7 +4,7 @@ export default _marko_template;
|
||||
import _marko_dynamic_tag from "marko/dist/runtime/helpers/dynamic-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "F7IQjQ3o",
|
||||
const _marko_componentType = "V8pzyNwe",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_dynamic_tag(out, input.x, () => ({
|
||||
|
||||
@ -6,7 +6,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("F7IQjQ3o", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("V8pzyNwe", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -6,7 +6,7 @@ import _hello from "./components/hello/index.marko";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "JSqoVlsR",
|
||||
const _marko_componentType = "OLo+Dwkn",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
let _item = null;
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("JSqoVlsR", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("OLo+Dwkn", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -6,7 +6,7 @@ import _hello from "./components/hello/index.marko";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "uv3Fek-D",
|
||||
const _marko_componentType = "GuHig6zQ",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
const _cols = [];
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("uv3Fek-D", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("GuHig6zQ", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import _hello from "./components/hello/index.marko";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "tlG_aFWw",
|
||||
const _marko_componentType = "hNiObgtw",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_tag(_hello, {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("tlG_aFWw", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("hNiObgtw", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "KHR7BXxN",
|
||||
const _marko_componentType = "CtqnD7TI",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<input checked>");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("KHR7BXxN", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("CtqnD7TI", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -8,7 +8,7 @@ import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_dynamic_tag from "marko/dist/runtime/helpers/dynamic-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "u12dftVQ",
|
||||
const _marko_componentType = "TKoJdMQb",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w(`<div${_marko_attr("class", _marko_class_merge(["a", {
|
||||
|
||||
@ -9,7 +9,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("u12dftVQ", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("TKoJdMQb", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_class_merge from "marko/dist/runtime/helpers/class-value";
|
||||
import _marko_attr from "marko/dist/runtime/html/helpers/attr";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "LEvoi_BG",
|
||||
const _marko_componentType = "SA1M0lYk",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w(`<div${_marko_attr("class", _marko_class_merge(input.className))}${_marko_attr("foo", 'a' + input.foo + 'b')}${_marko_attr("bar", `a ${input.foo} b`)}></div>`);
|
||||
|
||||
@ -6,7 +6,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("LEvoi_BG", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("SA1M0lYk", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "OrWAJ3ye",
|
||||
const _marko_componentType = "9WNpCPpT",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<div d=0 y=1></div>");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("OrWAJ3ye", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("9WNpCPpT", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -4,7 +4,7 @@ export default _marko_template;
|
||||
import _marko_attr from "marko/dist/runtime/html/helpers/attr";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "Mjnbnny5",
|
||||
const _marko_componentType = "m2haKSSA",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w(`<div${_marko_attr("id", _component.elId("1"))}${_marko_attr("aria-described-by", _component.elId("b"))}></div>`);
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("Mjnbnny5", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("m2haKSSA", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -8,7 +8,7 @@ import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_dynamic_tag from "marko/dist/runtime/helpers/dynamic-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "iougQjrT",
|
||||
const _marko_componentType = "Up7A+MWi",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w(`<div${_marko_attr("style", _marko_style_merge({
|
||||
|
||||
@ -9,7 +9,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("iougQjrT", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("Up7A+MWi", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -4,7 +4,7 @@ export default _marko_template;
|
||||
import _marko_attr from "marko/dist/runtime/html/helpers/attr";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "kMyNIV8M",
|
||||
const _marko_componentType = "vJZypcf5",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w(`<div${_marko_attr("foo", `Hello ${input.name}`)}></div>`);
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("kMyNIV8M", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("vJZypcf5", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -6,7 +6,7 @@ import _await from "../../../../marko/src/core-tags/core/await/renderer.js";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "Jif94jIs",
|
||||
const _marko_componentType = "8BXCo81d",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_tag(_await, {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("Jif94jIs", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("8BXCo81d", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "Yf6hG3qo",
|
||||
const _marko_componentType = "EazLsc5m",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<div>Here is a CDATA section: <![CDATA[ < > & ]]> with all kinds of unescaped text.</div>");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("Yf6hG3qo", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("EazLsc5m", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -4,7 +4,7 @@ export default _marko_template;
|
||||
import _marko_component from "./component.js";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "oD6hwYUT",
|
||||
const _marko_componentType = "ErZDLFTk",
|
||||
_marko_component2 = _marko_component;
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<div></div>");
|
||||
|
||||
@ -6,7 +6,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("oD6hwYUT", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("ErZDLFTk", () => _marko_template),
|
||||
_marko_component2 = _marko_component;
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -4,7 +4,7 @@ export default _marko_template;
|
||||
import _marko_component from "./template.component.js";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "8XKzQuec",
|
||||
const _marko_componentType = "cQ4BiZgz",
|
||||
_marko_component2 = _marko_component;
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<div></div>");
|
||||
|
||||
@ -6,7 +6,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("8XKzQuec", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("cQ4BiZgz", () => _marko_template),
|
||||
_marko_component2 = _marko_component;
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "jFgP9tKb",
|
||||
const _marko_componentType = "rmgp0gbX",
|
||||
_marko_component = {
|
||||
onCreate() {
|
||||
this.x = 1
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("jFgP9tKb", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("rmgp0gbX", () => _marko_template),
|
||||
_marko_component = {
|
||||
onCreate() {
|
||||
this.x = 1
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "xn-IEZ41",
|
||||
const _marko_componentType = "F7GLatBK",
|
||||
_marko_component = {
|
||||
onCreate() {
|
||||
this.x = 1
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("xn-IEZ41", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("F7GLatBK", () => _marko_template),
|
||||
_marko_component = {
|
||||
onCreate() {
|
||||
this.x = 1
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "qE1CXc-I",
|
||||
const _marko_componentType = "7oQXz9rS",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<div><!--abc--><!--[if lt IE 9]><script src=\"...\"></script><![endif]--><!--[if lt IE 9]><script src=\"...\"></script><![endif]--></div>");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("qE1CXc-I", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("7oQXz9rS", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "mYjWb94U",
|
||||
const _marko_componentType = "O83mlmop",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<hello></hello>");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("mYjWb94U", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("O83mlmop", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import _customTagData from "./custom-tag-data-tag.js";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "nw4fWKPp",
|
||||
const _marko_componentType = "ZqQwXW7R",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_tag(_customTagData, {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("nw4fWKPp", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("ZqQwXW7R", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import _new from "./new.marko";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "aQVkZauA",
|
||||
const _marko_componentType = "hPPGxVRm",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_tag(_new, {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("aQVkZauA", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("hPPGxVRm", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -6,7 +6,7 @@ import _customTag from "./components/custom-tag.marko";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "bs1OMu7X",
|
||||
const _marko_componentType = "D4iHvcrp",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_tag(_customTag, {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("bs1OMu7X", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("D4iHvcrp", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import _testBodyFunction from "./tags/test-body-function/renderer.js";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "H-1GL0dm",
|
||||
const _marko_componentType = "c9tNjqrV",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_tag(_testBodyFunction, {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("H-1GL0dm", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("c9tNjqrV", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -4,7 +4,7 @@ export default _marko_template;
|
||||
import _marko_component from "./template.component.js";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "R7o4vS6k",
|
||||
const _marko_componentType = "WET+Vfy4",
|
||||
_marko_component2 = _marko_component;
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<div></div>");
|
||||
|
||||
@ -6,7 +6,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("R7o4vS6k", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("WET+Vfy4", () => _marko_template),
|
||||
_marko_component2 = _marko_component;
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import _hello from "./hello.marko";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "w-udKFIl",
|
||||
const _marko_componentType = "s2zGW8TX",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_tag(_hello, {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("w-udKFIl", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("s2zGW8TX", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "9TlcnyhF",
|
||||
const _marko_componentType = "5fhDZgMT",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<span style=display:block></span>");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("9TlcnyhF", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("5fhDZgMT", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import _testHello from "./tags/test-hello/renderer.js";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "IDRAzWdx",
|
||||
const _marko_componentType = "gHRccTPG",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_tag(_testHello, {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("IDRAzWdx", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("gHRccTPG", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import { x as _marko_escapeXml } from "marko/dist/runtime/html/helpers/escape-xm
|
||||
import _marko_props from "marko/dist/runtime/html/helpers/data-marko";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "PGtLNOSk",
|
||||
const _marko_componentType = "qc7Y7xBI",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w(`<div${_marko_props(out, _component, {
|
||||
|
||||
@ -6,7 +6,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("PGtLNOSk", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("qc7Y7xBI", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -6,7 +6,7 @@ import _test from "./test.marko";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "Et4Xovh7",
|
||||
const _marko_componentType = "Pet223we",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_tag(_test, {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("Et4Xovh7", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("Pet223we", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "YGIRzvLP",
|
||||
const _marko_componentType = "p0+/pj8a",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<?xml version=\"1.0\" encoding=\"utf-8\"?><contact-info><name>Hello World</name></contact-info>");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("YGIRzvLP", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("p0+/pj8a", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -7,7 +7,7 @@ import _awaitReorderer from "../../../../marko/src/core-tags/core/await/reordere
|
||||
import _preferredScriptLocation from "../../../../marko/src/core-tags/components/preferred-script-location-tag.js";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "m6h-ggcc",
|
||||
const _marko_componentType = "VJrYycFN",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<!DOCTYPE html><html><head><title>Title of the document</title></head><body>The content of the document......");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("m6h-ggcc", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("VJrYycFN", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_dynamic_tag from "marko/dist/runtime/helpers/dynamic-tag";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "8WGjziPr",
|
||||
const _marko_componentType = "FiPq+pCl",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_dynamic_tag(out, input, null, null, null, null, _component, "0");
|
||||
|
||||
@ -9,7 +9,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("8WGjziPr", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("FiPq+pCl", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "UkPdJEa2",
|
||||
const _marko_componentType = "Q2oCYb3A",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("Hello John & Suzy Invalid Entity: &b ; Valid Numeric Entity: " Valid Hexadecimal Entity: ¢");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("UkPdJEa2", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("Q2oCYb3A", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "N93_VW74",
|
||||
const _marko_componentType = "QPcOe9nt",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<div body-only-if></div>");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("N93_VW74", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("QPcOe9nt", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -4,7 +4,7 @@ export default _marko_template;
|
||||
import _marko_dynamic_tag from "marko/dist/runtime/helpers/dynamic-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "bnC1CPSF",
|
||||
const _marko_componentType = "vPxaLPFT",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_dynamic_tag(out, input.x, null, out => {
|
||||
|
||||
@ -6,7 +6,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("bnC1CPSF", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("vPxaLPFT", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -6,7 +6,7 @@ import _customTag from "./components/custom-tag.marko";
|
||||
import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "BaPp2UaD",
|
||||
const _marko_componentType = "7zxvsBE8",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w(`<div${_marko_props(out, _component, {
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("BaPp2UaD", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("7zxvsBE8", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import { x as _marko_escapeXml } from "marko/dist/runtime/html/helpers/escape-xm
|
||||
import _marko_props from "marko/dist/runtime/html/helpers/data-marko";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "4-NN7Z2_",
|
||||
const _marko_componentType = "avg1eu47",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
let _i = 0;
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("4-NN7Z2_", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("avg1eu47", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import { x as _marko_escapeXml } from "marko/dist/runtime/html/helpers/escape-xm
|
||||
import _marko_to_string from "marko/dist/runtime/helpers/to-string";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "5nWTrVOu",
|
||||
const _marko_componentType = "kCnjd+Lm",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w(`Hello ${_marko_escapeXml(input.name)}! Hello ${_marko_to_string(input.name)}! Hello ${_marko_to_string(input.missing)}!`);
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("5nWTrVOu", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("kCnjd+Lm", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "Q0sT_tOR",
|
||||
const _marko_componentType = "3DMKav/3",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<!--test-->");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("Q0sT_tOR", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("3DMKav/3", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {}, {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "w5F2RVUv",
|
||||
const _marko_componentType = "PF20NQ88",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<div><div></div>");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("w5F2RVUv", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("PF20NQ88", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "HCe_Baop",
|
||||
const _marko_componentType = "y0rlhGQ3",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
if (a + b) {
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("HCe_Baop", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("y0rlhGQ3", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import { asset as test } from "./test1/asset";
|
||||
import { asset } from "./test2/asset";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "fIVsfPog",
|
||||
const _marko_componentType = "xrPYS1qL",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {}, {
|
||||
t: _marko_componentType,
|
||||
|
||||
@ -7,7 +7,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("fIVsfPog", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("xrPYS1qL", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {}, {
|
||||
|
||||
@ -6,7 +6,7 @@ import "./foo";
|
||||
import baz from "./components/baz.marko";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "pCZWm9oa",
|
||||
const _marko_componentType = "aVPzDB9L",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {}, {
|
||||
t: _marko_componentType,
|
||||
|
||||
@ -8,7 +8,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("pCZWm9oa", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("aVPzDB9L", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {}, {
|
||||
|
||||
@ -3,7 +3,7 @@ const _marko_template = _t();
|
||||
export default _marko_template;
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "HqRKXhaW",
|
||||
const _marko_componentType = "R6eF4gGA",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w("<div>");
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("HqRKXhaW", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("R6eF4gGA", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import { x as _marko_escapeXml } from "marko/dist/runtime/html/helpers/escape-xm
|
||||
import _marko_dynamic_tag from "marko/dist/runtime/helpers/dynamic-tag";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "uRMbWunz",
|
||||
const _marko_componentType = "pLQ9rpQM",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
function _renderTree(out, node) {
|
||||
|
||||
@ -6,7 +6,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("uRMbWunz", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("pLQ9rpQM", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -6,7 +6,7 @@ import _marko_tag from "marko/dist/runtime/helpers/render-tag";
|
||||
import _preserve from "../../../../marko/src/core-tags/components/preserve-tag.js";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "rVSetn_I",
|
||||
const _marko_componentType = "qUg9ApxN",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
_marko_tag(_preserve, {
|
||||
|
||||
@ -8,7 +8,7 @@ import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/dom";
|
||||
import { r as _marko_registerComponent } from "marko/dist/runtime/components/registry-browser";
|
||||
|
||||
const _marko_componentType = _marko_registerComponent("rVSetn_I", () => _marko_template),
|
||||
const _marko_componentType = _marko_registerComponent("qUg9ApxN", () => _marko_template),
|
||||
_marko_component = {};
|
||||
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
|
||||
@ -5,7 +5,7 @@ import _marko_props from "marko/dist/runtime/html/helpers/data-marko";
|
||||
import _marko_attr from "marko/dist/runtime/html/helpers/attr";
|
||||
import _marko_renderer from "marko/dist/runtime/components/renderer";
|
||||
import { t as _t } from "marko/dist/runtime/html";
|
||||
const _marko_componentType = "jWznNrMq",
|
||||
const _marko_componentType = "r46whWwu",
|
||||
_marko_component = {};
|
||||
_marko_template._ = _marko_renderer(function (input, out, _component, component, state) {
|
||||
out.w(`<div><input${_marko_props(out, _component, {
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user