MCPcopy Create free account
hub / github.com/nodejs/node / get_base_class

Function get_base_class

deps/v8/tools/gen-postmortem-metadata.py:616–625  ·  view source on GitHub ↗
(klass)

Source from the content-addressed store, hash-verified

614# Get the base class
615#
616def get_base_class(klass):
617 if (klass == 'Object'):
618 return klass;
619
620 if (not (klass in klasses)):
621 return None;
622
623 k = klasses[klass];
624
625 return get_base_class(k['parent']);
626
627#
628# Loads class hierarchy and type information from "objects.h" etc.

Callers 1

emit_configFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected