'use strict'; var Node = require('./Node'); class Declaration extends Node { constructor(def) { super('Declaration'); this.declaration = def.declaration; } generateHTMLCode(codegen) { var builder = codegen.builder; return [ builder.htmlLiteral('') ]; } toJSON() { return { type: this.type, value: this.value }; } } module.exports = Declaration;