Lines Matching full:child
1711 * FunctionTemplate Child -> Child() . prototype -> { }
1714 * A FunctionTemplate 'Child' inherits from 'Parent', the prototype
1715 * object of the Child() function has __proto__ pointing to the
1716 * Parent() function's prototype object. An instance of the Child
1720 * section and create a Child FunctionTemplate by:
1724 * Local<FunctionTemplate> child = FunctionTemplate::New();
1725 * child->Inherit(parent);
1727 * Local<Function> child_function = child->GetFunction();
1731 * The Child function and Child instance will have the following