add method
- TextBit bit
 
Adds bit to the tail of this container.
Implementation
void add(TextBit bit) {
  assert(bit.parent == this);
  _children.add(bit);
}
    Adds bit to the tail of this container.
void add(TextBit bit) {
  assert(bit.parent == this);
  _children.add(bit);
}