_BasicNew implementation

Hello everybody,
I would like to read the implementation of the function

_BasicNew

of the Object class.
in which file in GitHub can I find it?
thanks for your help.
d

you can search though the code on GitHub. There are only two files.

Sorry, that was incredibly vague.

Functions beginning with underscores are implemented in C++ and are linked into supercollider from C++ with the C++ function definePrimitive.

This is the line where that linking happens…

The supercollider function (or rather primitive) called _BasicNew is connected to the C++ function basicNew, which is define here…

thank you very much!