We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
override
toStringToBuffer
JSXNode
1 parent de7827e commit 04e5897Copy full SHA for 04e5897
src/jsx/base.ts
@@ -242,7 +242,7 @@ export class JSXNode implements HtmlEscaped {
242
}
243
244
class JSXFunctionNode extends JSXNode {
245
- toStringToBuffer(buffer: StringBufferWithCallbacks): void {
+ override toStringToBuffer(buffer: StringBufferWithCallbacks): void {
246
const { children } = this
247
248
const res = (this.tag as Function).call(null, {
@@ -284,7 +284,7 @@ class JSXFunctionNode extends JSXNode {
284
285
286
export class JSXFragmentNode extends JSXNode {
287
288
childrenToStringToBuffer(this.children, buffer)
289
290
0 commit comments