marko 6.0.0-next.3.81 → 6.0.0-next.3.83

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1666,6 +1666,12 @@ var K_SCOPE_ID = Symbol("Scope ID");
1666
1666
  function getChunk() {
1667
1667
  return $chunk;
1668
1668
  }
1669
+ function getContext(key) {
1670
+ return $chunk.context?.[key];
1671
+ }
1672
+ function getState() {
1673
+ return $chunk.boundary.state;
1674
+ }
1669
1675
  function getScopeId(scope) {
1670
1676
  return scope[K_SCOPE_ID];
1671
1677
  }
@@ -2592,8 +2598,8 @@ function styleAttr(value) {
2592
2598
  return stringAttr("style", styleValue(value));
2593
2599
  }
2594
2600
  function optionValueAttr(value) {
2595
- const { [kSelectedValue]: selectedValue } = getChunk()?.context || {};
2596
- return attr("value", value) + (!isVoid(value) && (Array.isArray(value) ? selectedValue.includes(value) : selectedValue === value) ? " selected" : "");
2601
+ const selectedValue = getContext(kSelectedValue);
2602
+ return attr("value", value) + (!isVoid(value) && (Array.isArray(selectedValue) ? selectedValue.includes(value) : selectedValue === value) ? " selected" : "");
2597
2603
  }
2598
2604
  var kSelectedValue = Symbol("selectedValue");
2599
2605
  function controllable_select_value(scopeId, nodeAccessor, value, valueChange, content) {
@@ -2841,7 +2847,7 @@ var dynamicTag = (scopeId, accessor, tag, inputOrArgs, content, inputIsArgs, res
2841
2847
  throw new Error(`Invalid renderer passed for dynamic tag: ${renderer}`);
2842
2848
  }
2843
2849
  }
2844
- const chunk = getChunk();
2850
+ const state = getState();
2845
2851
  const branchId = peekNextScopeId();
2846
2852
  let result;
2847
2853
  if (typeof renderer === "string") {
@@ -2883,8 +2889,8 @@ var dynamicTag = (scopeId, accessor, tag, inputOrArgs, content, inputIsArgs, res
2883
2889
  throw new Error(`Body content is not supported for a "${renderer}" tag.`);
2884
2890
  }
2885
2891
  if (resume) {
2886
- chunk.writeHTML(
2887
- chunk.boundary.state.mark(
2892
+ write(
2893
+ state.mark(
2888
2894
  "|" /* BranchSingleNode */,
2889
2895
  scopeId + " " + accessor + " " + branchId
2890
2896
  )
@@ -2892,9 +2898,7 @@ var dynamicTag = (scopeId, accessor, tag, inputOrArgs, content, inputIsArgs, res
2892
2898
  }
2893
2899
  } else {
2894
2900
  if (resume) {
2895
- chunk.writeHTML(
2896
- chunk.boundary.state.mark("[" /* BranchStart */, branchId + "")
2897
- );
2901
+ write(state.mark("[" /* BranchStart */, branchId + ""));
2898
2902
  }
2899
2903
  result = withBranchId(branchId, () => {
2900
2904
  if (renderer) {
@@ -2906,12 +2910,7 @@ var dynamicTag = (scopeId, accessor, tag, inputOrArgs, content, inputIsArgs, res
2906
2910
  }
2907
2911
  });
2908
2912
  if (resume) {
2909
- chunk.writeHTML(
2910
- chunk.boundary.state.mark(
2911
- "]" /* BranchEnd */,
2912
- scopeId + " " + accessor
2913
- )
2914
- );
2913
+ write(state.mark("]" /* BranchEnd */, scopeId + " " + accessor));
2915
2914
  }
2916
2915
  }
2917
2916
  const rendered = peekNextScopeId() !== branchId;
@@ -1584,6 +1584,12 @@ var K_SCOPE_ID = Symbol("Scope ID");
1584
1584
  function getChunk() {
1585
1585
  return $chunk;
1586
1586
  }
1587
+ function getContext(key) {
1588
+ return $chunk.context?.[key];
1589
+ }
1590
+ function getState() {
1591
+ return $chunk.boundary.state;
1592
+ }
1587
1593
  function getScopeId(scope) {
1588
1594
  return scope[K_SCOPE_ID];
1589
1595
  }
@@ -2510,8 +2516,8 @@ function styleAttr(value) {
2510
2516
  return stringAttr("style", styleValue(value));
2511
2517
  }
2512
2518
  function optionValueAttr(value) {
2513
- const { [kSelectedValue]: selectedValue } = getChunk()?.context || {};
2514
- return attr("value", value) + (!isVoid(value) && (Array.isArray(value) ? selectedValue.includes(value) : selectedValue === value) ? " selected" : "");
2519
+ const selectedValue = getContext(kSelectedValue);
2520
+ return attr("value", value) + (!isVoid(value) && (Array.isArray(selectedValue) ? selectedValue.includes(value) : selectedValue === value) ? " selected" : "");
2515
2521
  }
2516
2522
  var kSelectedValue = Symbol("selectedValue");
2517
2523
  function controllable_select_value(scopeId, nodeAccessor, value, valueChange, content) {
@@ -2759,7 +2765,7 @@ var dynamicTag = (scopeId, accessor, tag, inputOrArgs, content, inputIsArgs, res
2759
2765
  throw new Error(`Invalid renderer passed for dynamic tag: ${renderer}`);
2760
2766
  }
2761
2767
  }
2762
- const chunk = getChunk();
2768
+ const state = getState();
2763
2769
  const branchId = peekNextScopeId();
2764
2770
  let result;
2765
2771
  if (typeof renderer === "string") {
@@ -2801,8 +2807,8 @@ var dynamicTag = (scopeId, accessor, tag, inputOrArgs, content, inputIsArgs, res
2801
2807
  throw new Error(`Body content is not supported for a "${renderer}" tag.`);
2802
2808
  }
2803
2809
  if (resume) {
2804
- chunk.writeHTML(
2805
- chunk.boundary.state.mark(
2810
+ write(
2811
+ state.mark(
2806
2812
  "|" /* BranchSingleNode */,
2807
2813
  scopeId + " " + accessor + " " + branchId
2808
2814
  )
@@ -2810,9 +2816,7 @@ var dynamicTag = (scopeId, accessor, tag, inputOrArgs, content, inputIsArgs, res
2810
2816
  }
2811
2817
  } else {
2812
2818
  if (resume) {
2813
- chunk.writeHTML(
2814
- chunk.boundary.state.mark("[" /* BranchStart */, branchId + "")
2815
- );
2819
+ write(state.mark("[" /* BranchStart */, branchId + ""));
2816
2820
  }
2817
2821
  result = withBranchId(branchId, () => {
2818
2822
  if (renderer) {
@@ -2824,12 +2828,7 @@ var dynamicTag = (scopeId, accessor, tag, inputOrArgs, content, inputIsArgs, res
2824
2828
  }
2825
2829
  });
2826
2830
  if (resume) {
2827
- chunk.writeHTML(
2828
- chunk.boundary.state.mark(
2829
- "]" /* BranchEnd */,
2830
- scopeId + " " + accessor
2831
- )
2832
- );
2831
+ write(state.mark("]" /* BranchEnd */, scopeId + " " + accessor));
2833
2832
  }
2834
2833
  }
2835
2834
  const rendered = peekNextScopeId() !== branchId;
@@ -11,6 +11,8 @@ declare enum Mark {
11
11
  ReorderMarker = "#"
12
12
  }
13
13
  export declare function getChunk(): Chunk | undefined;
14
+ export declare function getContext(key: keyof NonNullable<Chunk["context"]>): unknown;
15
+ export declare function getState(): State;
14
16
  export declare function getScopeId(scope: unknown): number | undefined;
15
17
  export declare function write(html: string): void;
16
18
  export declare function writeScript(script: string): void;
package/dist/html.js CHANGED
@@ -1083,6 +1083,12 @@ var $chunk, NOOP = () => {
1083
1083
  function getChunk() {
1084
1084
  return $chunk;
1085
1085
  }
1086
+ function getContext(key) {
1087
+ return $chunk.context?.[key];
1088
+ }
1089
+ function getState() {
1090
+ return $chunk.boundary.state;
1091
+ }
1086
1092
  function getScopeId(scope) {
1087
1093
  return scope[K_SCOPE_ID];
1088
1094
  }
@@ -1659,8 +1665,8 @@ function styleAttr(value) {
1659
1665
  return stringAttr("style", styleValue(value));
1660
1666
  }
1661
1667
  function optionValueAttr(value) {
1662
- let { [kSelectedValue]: selectedValue } = getChunk()?.context || {};
1663
- return attr("value", value) + (!isVoid(value) && (Array.isArray(value) ? selectedValue.includes(value) : selectedValue === value) ? " selected" : "");
1668
+ let selectedValue = getContext(kSelectedValue);
1669
+ return attr("value", value) + (!isVoid(value) && (Array.isArray(selectedValue) ? selectedValue.includes(value) : selectedValue === value) ? " selected" : "");
1664
1670
  }
1665
1671
  var kSelectedValue = Symbol("selectedValue");
1666
1672
  function controllable_select_value(scopeId, nodeAccessor, value, valueChange, content) {
@@ -1851,7 +1857,7 @@ var DEFAULT_RUNTIME_ID = "M", DEFAULT_RENDER_ID = "_";
1851
1857
 
1852
1858
  // src/html/dynamic-tag.ts
1853
1859
  var voidElementsReg = /^(?:area|b(?:ase|r)|col|embed|hr|i(?:mg|nput)|link|meta|param|source|track|wbr)$/, dynamicTag = (scopeId, accessor, tag, inputOrArgs, content, inputIsArgs, resume) => {
1854
- let renderer = normalizeDynamicRenderer(tag), chunk = getChunk(), branchId = peekNextScopeId(), result;
1860
+ let renderer = normalizeDynamicRenderer(tag), state = getState(), branchId = peekNextScopeId(), result;
1855
1861
  if (typeof renderer == "string") {
1856
1862
  let input = (inputIsArgs ? inputOrArgs[0] : inputOrArgs) || {};
1857
1863
  nextScopeId(), write(`<${renderer}${attrs(input, accessor, scopeId, renderer)}>`), voidElementsReg.test(renderer) || (withBranchId(branchId, () => {
@@ -1869,28 +1875,21 @@ var voidElementsReg = /^(?:area|b(?:ase|r)|col|embed|hr|i(?:mg|nput)|link|meta|p
1869
1875
  input.valueChange,
1870
1876
  content
1871
1877
  ) : content());
1872
- }), write(`</${renderer}>`)), resume && chunk.writeHTML(
1873
- chunk.boundary.state.mark(
1878
+ }), write(`</${renderer}>`)), resume && write(
1879
+ state.mark(
1874
1880
  "|" /* BranchSingleNode */,
1875
1881
  scopeId + " " + accessor + " " + branchId
1876
1882
  )
1877
1883
  );
1878
1884
  } else
1879
- resume && chunk.writeHTML(
1880
- chunk.boundary.state.mark("[" /* BranchStart */, branchId + "")
1881
- ), result = withBranchId(branchId, () => {
1885
+ resume && write(state.mark("[" /* BranchStart */, branchId + "")), result = withBranchId(branchId, () => {
1882
1886
  if (renderer)
1883
1887
  return inputIsArgs ? renderer(...inputOrArgs) : renderer(
1884
1888
  content ? { ...inputOrArgs, content } : inputOrArgs
1885
1889
  );
1886
1890
  if (content)
1887
1891
  return content();
1888
- }), resume && chunk.writeHTML(
1889
- chunk.boundary.state.mark(
1890
- "]" /* BranchEnd */,
1891
- scopeId + " " + accessor
1892
- )
1893
- );
1892
+ }), resume && write(state.mark("]" /* BranchEnd */, scopeId + " " + accessor));
1894
1893
  return peekNextScopeId() !== branchId ? resume && writeScope(scopeId, {
1895
1894
  ["d" /* ConditionalScope */ + accessor]: writeScope(branchId, {}),
1896
1895
  ["c" /* ConditionalRenderer */ + accessor]: renderer?.h || renderer
package/dist/html.mjs CHANGED
@@ -1004,6 +1004,12 @@ var $chunk, NOOP = () => {
1004
1004
  function getChunk() {
1005
1005
  return $chunk;
1006
1006
  }
1007
+ function getContext(key) {
1008
+ return $chunk.context?.[key];
1009
+ }
1010
+ function getState() {
1011
+ return $chunk.boundary.state;
1012
+ }
1007
1013
  function getScopeId(scope) {
1008
1014
  return scope[K_SCOPE_ID];
1009
1015
  }
@@ -1580,8 +1586,8 @@ function styleAttr(value) {
1580
1586
  return stringAttr("style", styleValue(value));
1581
1587
  }
1582
1588
  function optionValueAttr(value) {
1583
- let { [kSelectedValue]: selectedValue } = getChunk()?.context || {};
1584
- return attr("value", value) + (!isVoid(value) && (Array.isArray(value) ? selectedValue.includes(value) : selectedValue === value) ? " selected" : "");
1589
+ let selectedValue = getContext(kSelectedValue);
1590
+ return attr("value", value) + (!isVoid(value) && (Array.isArray(selectedValue) ? selectedValue.includes(value) : selectedValue === value) ? " selected" : "");
1585
1591
  }
1586
1592
  var kSelectedValue = Symbol("selectedValue");
1587
1593
  function controllable_select_value(scopeId, nodeAccessor, value, valueChange, content) {
@@ -1772,7 +1778,7 @@ var DEFAULT_RUNTIME_ID = "M", DEFAULT_RENDER_ID = "_";
1772
1778
 
1773
1779
  // src/html/dynamic-tag.ts
1774
1780
  var voidElementsReg = /^(?:area|b(?:ase|r)|col|embed|hr|i(?:mg|nput)|link|meta|param|source|track|wbr)$/, dynamicTag = (scopeId, accessor, tag, inputOrArgs, content, inputIsArgs, resume) => {
1775
- let renderer = normalizeDynamicRenderer(tag), chunk = getChunk(), branchId = peekNextScopeId(), result;
1781
+ let renderer = normalizeDynamicRenderer(tag), state = getState(), branchId = peekNextScopeId(), result;
1776
1782
  if (typeof renderer == "string") {
1777
1783
  let input = (inputIsArgs ? inputOrArgs[0] : inputOrArgs) || {};
1778
1784
  nextScopeId(), write(`<${renderer}${attrs(input, accessor, scopeId, renderer)}>`), voidElementsReg.test(renderer) || (withBranchId(branchId, () => {
@@ -1790,28 +1796,21 @@ var voidElementsReg = /^(?:area|b(?:ase|r)|col|embed|hr|i(?:mg|nput)|link|meta|p
1790
1796
  input.valueChange,
1791
1797
  content
1792
1798
  ) : content());
1793
- }), write(`</${renderer}>`)), resume && chunk.writeHTML(
1794
- chunk.boundary.state.mark(
1799
+ }), write(`</${renderer}>`)), resume && write(
1800
+ state.mark(
1795
1801
  "|" /* BranchSingleNode */,
1796
1802
  scopeId + " " + accessor + " " + branchId
1797
1803
  )
1798
1804
  );
1799
1805
  } else
1800
- resume && chunk.writeHTML(
1801
- chunk.boundary.state.mark("[" /* BranchStart */, branchId + "")
1802
- ), result = withBranchId(branchId, () => {
1806
+ resume && write(state.mark("[" /* BranchStart */, branchId + "")), result = withBranchId(branchId, () => {
1803
1807
  if (renderer)
1804
1808
  return inputIsArgs ? renderer(...inputOrArgs) : renderer(
1805
1809
  content ? { ...inputOrArgs, content } : inputOrArgs
1806
1810
  );
1807
1811
  if (content)
1808
1812
  return content();
1809
- }), resume && chunk.writeHTML(
1810
- chunk.boundary.state.mark(
1811
- "]" /* BranchEnd */,
1812
- scopeId + " " + accessor
1813
- )
1814
- );
1813
+ }), resume && write(state.mark("]" /* BranchEnd */, scopeId + " " + accessor));
1815
1814
  return peekNextScopeId() !== branchId ? resume && writeScope(scopeId, {
1816
1815
  ["d" /* ConditionalScope */ + accessor]: writeScope(branchId, {}),
1817
1816
  ["c" /* ConditionalRenderer */ + accessor]: renderer?.h || renderer
@@ -257,9 +257,9 @@ function generateUid(name2 = "") {
257
257
  countsForFile.set(file, counts);
258
258
  }
259
259
  name2 = name2.replace(/^[^a-z$_]|[^a-z$_0-9]/gi, "") || "temp";
260
- name2 = /^_?(.*?)\d*$/.exec(name2)?.[1] || name2;
260
+ name2 = /^\$?(.*?)\d*$/.exec(name2)?.[1] || name2;
261
261
  const i = (counts.get(name2) || 0) + 1;
262
- const uniqueName = `_${i > 1 ? name2 + i : name2}`;
262
+ const uniqueName = `$${i > 1 ? name2 + i : name2}`;
263
263
  counts.set(name2, i);
264
264
  return uniqueName;
265
265
  }
@@ -270,7 +270,7 @@ function getInitialCounts(file) {
270
270
  const counts = /* @__PURE__ */ new Map();
271
271
  const program = file.path;
272
272
  const countName = (name2) => {
273
- const match = /^_(.*?)([1-9]\d*)?$/.exec(name2);
273
+ const match = /^$(.*?)([1-9]\d*)?$/.exec(name2);
274
274
  if (match) {
275
275
  const name3 = match[1];
276
276
  const count = match[2] ? +match[2] + 1 : 1;
@@ -829,6 +829,9 @@ function getContentInfo(path5) {
829
829
  const endType = getNodeContentType(body[endIndex], "endType", contentInfo);
830
830
  if (endType !== null) {
831
831
  contentInfo.endType = endType;
832
+ if (endType === 1 /* Dynamic */) {
833
+ contentInfo.singleChild = false;
834
+ }
832
835
  for (let startIndex = 0; startIndex < endIndex; startIndex++) {
833
836
  const startType = getNodeContentType(body[startIndex], "startType");
834
837
  if (startType !== null) {
@@ -3418,7 +3421,7 @@ function replaceRegisteredFunctionNode(node) {
3418
3421
  function getRegisteredFnExpression(node) {
3419
3422
  const { extra } = node;
3420
3423
  if (isRegisteredFnExtra(extra)) {
3421
- const id = generateUid(extra.name);
3424
+ const id = extra.name;
3422
3425
  const referencesScope = extra.referencesScope;
3423
3426
  const referencedBindings = extra.referencedBindingsInFunction;
3424
3427
  let registedFns = registeredFnsForProgram.get((0, import_babel_utils12.getProgram)().node);
@@ -8659,7 +8662,6 @@ var document_type_default = {
8659
8662
  // src/translator/visitors/function.ts
8660
8663
  var import_compiler51 = require("@marko/compiler");
8661
8664
  var import_babel_utils42 = require("@marko/compiler/babel-utils");
8662
- var functionIdsBySection = /* @__PURE__ */ new WeakMap();
8663
8665
  var function_default = {
8664
8666
  analyze(fn) {
8665
8667
  if (fn !== getFnRoot(fn)) {
@@ -8673,33 +8675,22 @@ var function_default = {
8673
8675
  return;
8674
8676
  }
8675
8677
  const { node } = fn;
8678
+ const section = getSection(fn);
8676
8679
  const extra = node.extra ??= {};
8677
- const name2 = extra.name = fn.node.id?.name || (isMarkoAttribute(markoRoot) ? markoRoot.node.default ? import_compiler51.types.toIdentifier(
8678
- markoRoot.parentPath.has("var") ? markoRoot.parentPath.get("var") : markoRoot.parentPath.get("name")
8679
- ) : markoRoot.node.name : import_compiler51.types.isVariableDeclarator(fn.parent) && import_compiler51.types.isIdentifier(fn.parent.id) ? fn.parent.id.name : import_compiler51.types.isObjectMethod(node) && import_compiler51.types.isIdentifier(node.key) ? node.key.name : "anonymous");
8680
8680
  const {
8681
8681
  markoOpts,
8682
8682
  opts: { filename }
8683
8683
  } = (0, import_babel_utils42.getFile)();
8684
- const section = getSection(fn);
8685
- let functionNameCounts = functionIdsBySection.get(section);
8686
- if (!functionNameCounts) {
8687
- functionNameCounts = /* @__PURE__ */ new Map();
8688
- functionIdsBySection.set(section, functionNameCounts);
8689
- }
8690
- const index = functionNameCounts.get(name2);
8691
- let id = "";
8692
- if (index === void 0) {
8693
- functionNameCounts.set(name2, 0);
8694
- } else {
8695
- functionNameCounts.set(name2, index + 1);
8696
- id = `_${index}`;
8697
- }
8684
+ const name2 = extra.name = generateUid(
8685
+ fn.node.id?.name || (isMarkoAttribute(markoRoot) ? markoRoot.node.default ? import_compiler51.types.toIdentifier(
8686
+ markoRoot.parentPath.has("var") ? markoRoot.parentPath.get("var") : markoRoot.parentPath.get("name")
8687
+ ) : markoRoot.node.name : import_compiler51.types.isVariableDeclarator(fn.parent) && import_compiler51.types.isIdentifier(fn.parent.id) ? fn.parent.id.name : import_compiler51.types.isObjectMethod(node) && import_compiler51.types.isIdentifier(node.key) ? node.key.name : "anonymous")
8688
+ );
8698
8689
  extra.section = section;
8699
8690
  extra.registerId = (0, import_babel_utils42.getTemplateId)(
8700
8691
  markoOpts,
8701
8692
  filename,
8702
- `${section.id}/${name2 + id}`
8693
+ `${section.id}/${name2.slice(1)}`
8703
8694
  );
8704
8695
  }
8705
8696
  };
@@ -9796,14 +9787,12 @@ var dynamic_tag_default = {
9796
9787
  isClassAPI ? "renderBody" : "content"
9797
9788
  );
9798
9789
  const args = [];
9799
- let hasMultipleArgs = false;
9800
- if (node.arguments?.length) {
9790
+ let hasTagArgs = false;
9791
+ if (node.arguments) {
9792
+ hasTagArgs = true;
9801
9793
  args.push(...node.arguments);
9802
9794
  if (properties.length) {
9803
- hasMultipleArgs = true;
9804
9795
  args.push(propsToExpression(properties));
9805
- } else {
9806
- hasMultipleArgs = node.arguments.length > 1 || import_compiler57.types.isSpreadElement(node.arguments[0]);
9807
9796
  }
9808
9797
  } else {
9809
9798
  const contentProp = getTranslatedBodyContentProperty(properties);
@@ -9818,7 +9807,7 @@ var dynamic_tag_default = {
9818
9807
  flushInto(tag);
9819
9808
  writeHTMLResumeStatements(tag.get("body"));
9820
9809
  const serializeReason = isClassAPI || !!node.var || getDynamicSourcesForExtra(tagExtra);
9821
- const dynamicTagExpr = hasMultipleArgs ? callRuntime(
9810
+ const dynamicTagExpr = hasTagArgs ? callRuntime(
9822
9811
  "dynamicTag",
9823
9812
  getScopeIdIdentifier(section),
9824
9813
  getScopeAccessorLiteral(nodeRef2),
@@ -9906,11 +9895,11 @@ var dynamic_tag_default = {
9906
9895
  getScopeAccessorLiteral(nodeRef2),
9907
9896
  bodySection && import_compiler57.types.identifier(bodySection.name),
9908
9897
  tagVarSignal ? import_compiler57.types.arrowFunctionExpression([], tagVarSignal.identifier) : void 0,
9909
- hasMultipleArgs && import_compiler57.types.numericLiteral(1)
9898
+ hasTagArgs && import_compiler57.types.numericLiteral(1)
9910
9899
  );
9911
9900
  };
9912
9901
  if (args.length) {
9913
- const argsOrInput = hasMultipleArgs ? import_compiler57.types.arrayExpression(args) : args[0];
9902
+ const argsOrInput = hasTagArgs ? import_compiler57.types.arrayExpression(args) : args[0];
9914
9903
  if (!import_compiler57.types.isObjectExpression(argsOrInput) || argsOrInput.properties.length) {
9915
9904
  signal.extraArgs = [
9916
9905
  import_compiler57.types.arrowFunctionExpression(
@@ -93,7 +93,7 @@ export interface AssignedBindingExtra extends ReferencedExtra {
93
93
  export declare function isAssignedBindingExtra(extra: t.NodeExtra | undefined): extra is AssignedBindingExtra;
94
94
  export interface RegisteredFnExtra extends ReferencedExtra {
95
95
  registerId: string;
96
- name: string | undefined;
96
+ name: string;
97
97
  referencesScope?: boolean;
98
98
  referencedBindingsInFunction: ReferencedBindings;
99
99
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "6.0.0-next.3.81",
3
+ "version": "6.0.0-next.3.83",
4
4
  "description": "Optimized runtime for Marko templates.",
5
5
  "keywords": [
6
6
  "api",