The position of any layer that has a parent is no longer represented in world space, but relative to the parent’s upper left corner. If you want the world or comp equivalent, you need to use one of the layer space transforms. It would look like this:
L = thisComp.layer(“Null 1”);
P = L.toWorld(L.anchorPoint);
or
L = thisComp.layer(“Null 1”);
P = L.toComp(L.anchorPoint);
Dan