visitStructDecl method
Implementation
@override
void visitStructDecl(StructDecl node) {
// final savedCurNamespace = _curNamespace;
// _curNamespace = HTNamespace(id: node.id.id, closure: _curNamespace);
// for (final node in node.definition) {
// node.accept(this);
// }
// node.declaration = HTStructDeclaration(_curNamespace,
// id: node.id.id,
// closure: savedCurNamespace,
// source: _curSource,
// prototypeId: node.prototypeId?.id,
// isTopLevel: node.isTopLevel,
// isExported: node.isExported);
// _curNamespace = savedCurNamespace;
// _curNamespace.define(node.id.id, node.declaration!);
}