in base_block.go [25:38]
func NewBaseBlock(c Config, hb *HclBlock) *BaseBlock {
n := ""
if hb != nil {
n = hb.Labels[1]
}
bb := &BaseBlock{
c: c,
hb: hb,
blockAddress: blockAddress(hb),
name: n,
id: uuid.NewString(),
}
return bb
}