How to detect transition from one shape to another in V8?
Let’s say I have next code: let x = null; x = 10; How I can detect shape transition here? From NULL_TYPE to SMI ? I know that there should be some built in function. Here is the list. I expect that …