Skip to content

Commit

Permalink
docs(v2/ssr-container): add context to tag nesting property (QwikDev#…
Browse files Browse the repository at this point in the history
  • Loading branch information
naorpeled authored Jun 15, 2024
1 parent 6d5c545 commit eefc38b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/qwik/src/server/v2-ssr-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ class StringBufferWriter {
}

interface ContainerElementFrame {
/*
* Used during development mode to track the nesting of HTML tags
* in order provide error messages when the nesting is incorrect.
*/
tagNesting: TagNesting;
parent: ContainerElementFrame | null;
/** Element name. */
Expand Down

0 comments on commit eefc38b

Please sign in to comment.