marko 6.0.0-next.3.83 → 6.0.0-next.3.84

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.
@@ -1,10 +1,10 @@
1
1
  import { type Tag } from "@marko/compiler/babel-utils";
2
2
  import { type Binding } from "../util/references";
3
- export declare const kCommentTagBinding: unique symbol;
3
+ declare const kNodeBinding: unique symbol;
4
4
  declare const kGetterId: unique symbol;
5
5
  declare module "@marko/compiler/dist/types" {
6
6
  interface NodeExtra {
7
- [kCommentTagBinding]?: Binding;
7
+ [kNodeBinding]?: Binding;
8
8
  [kGetterId]?: string;
9
9
  }
10
10
  }
@@ -1,7 +1,10 @@
1
1
  import { type Tag } from "@marko/compiler/babel-utils";
2
+ import { type Binding } from "../util/references";
3
+ declare const kNodeBinding: unique symbol;
2
4
  declare const kGetterId: unique symbol;
3
5
  declare module "@marko/compiler/dist/types" {
4
6
  interface NodeExtra {
7
+ [kNodeBinding]?: Binding;
5
8
  [kGetterId]?: string;
6
9
  }
7
10
  }
@@ -1,7 +1,10 @@
1
1
  import { type Tag } from "@marko/compiler/babel-utils";
2
+ import { type Binding } from "../util/references";
3
+ declare const kNodeBinding: unique symbol;
2
4
  declare const kGetterId: unique symbol;
3
5
  declare module "@marko/compiler/dist/types" {
4
6
  interface NodeExtra {
7
+ [kNodeBinding]?: Binding;
5
8
  [kGetterId]?: string;
6
9
  }
7
10
  }