Skip to content

Commit 60b7d81

Browse files
committed
fix doc
1 parent 1a88f28 commit 60b7d81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/AST.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,8 @@ interface SvelteConstTag extends Node {
423423
}
424424
```
425425

426+
[VariableDeclarator] is a node defined in ESTree.
427+
426428
### SvelteRenderTag
427429

428430
This is the `{@render}` tag node.
@@ -431,12 +433,10 @@ This is the `{@render}` tag node.
431433
interface SvelteRenderTag extends Node {
432434
type: "SvelteRenderTag";
433435
callee: Identifier;
434-
argument: Expression | null;
436+
arguments: (Expression | SpreadElement)[];
435437
}
436438
```
437439

438-
[VariableDeclarator] is a node defined in ESTree.
439-
440440
### SvelteIfBlock
441441

442442
This is the `{#if}` tag node. `{:else if}` is also included in this node.

0 commit comments

Comments
 (0)