1   type Decorator @abstract @mut =
2       inherit Container
3   
4       var obs content : Option<Control> @dst = None
5       init_child self content@atom
6   
7       def Container.get_slice = content@atom.as_safe_slice
8