The following statement is from WebKit. I am not 100% sure what it means. Any clues?
new ((void*)&nullAtom) AtomicString;
It's a placement-new. It means that the AtomicString object will be constructed at the memory location pointed to inside the parentheses (&nullAtom), rather than the usual behavior (constructed on top of a bit of memory taken off of the heap).