Seems that there's no need to use addChild for masks

Say I have a maskRectange:Shape, and I don’t have to add it to the display list before use it as a mask:

var s:Shape = new Shape();
s.drawRect(...);
something.mask = s;
//addChild(s); // No need.
addChild(something);

Just want to make sure this.