Don't add references when accessing prototype object (find all refs on .prototype is crazy)
Address previous code review feedback
#980 azure has unapplicable completions
The util.merge implementation was cheating, which resulted in prototypes being shared, and when
a function was added to a prototype it would be shared across everything. Ultimately this meant
every single event emitter in Node shared all of the same methods. Now we produce a new value.
↧