'use strict'; var Node = require('./Node'); class HtmlComment extends Node { constructor(def) { super('HtmlComment'); this.comment = def.comment; } generateHtmlCode(codegen) { var comment = this.comment; var literal = codegen.builder.literal; codegen.addWrite(literal('')); } walk(walker) { this.comment = walker.walk(this.comment); } } module.exports = HtmlComment;