🚧printPrototypeChain()

🚧 under construction -> improve with TableMaker, make it a method.

JStypesobjectprototype chain ⟩ print

// importimport
const Iterator = require('./IteratorPrototype.js');
const { isPrimitive } = require('./isObject.js');
const { typeName } = require('./typeNames.js');
const { log } = console;

// ⭐️ prototype chain of value
function printPrototypeChainOf(value, name, {
    
    typeWidth=12,     // "type" column width
    noteWidth=23,     // "note" column width
    valueWidth=28,    // "value" column width
    
    prototypes=[],    // custom prototypes, format:
                      // {value: <value>, name: <name>}
}={}) {
    
    // if not an object, do nothing
    if (isPrimitive(value)) {
        log(`ℹ️ value: ${value} is not an object.`);
        return;
    }

    // keep the original object for reference
    const original = value;

    // column widths
    const widths = {
        
        type: typeWidth,
        note: noteWidth,
        value: valueWidth,
        
        cols: 3,        // # of columns
        pad: 1,
            
            
        get total() {
            return this.type + this.note + this.value + (this.cols - 1) * this.pad
        }
    };

    // separator line
    const line = '-'.repeat(widths.total);
    const arrow = '→ ';
    
    // 🔸 print row
    function print(type, note='', value='') {
        
        const items = [
            type.padEnd(widths.type, ' '),
            note.padEnd(widths.note, ' '),
            value,
        ];
        
        log(...items);
    }

    // table header
    log(`🌟 Prototype Chain of: `, name);
    log(line);
    print(`  type`, `prototype chain`, `value`);
    log(line);

    // 🌟 builtin prototypes
    const builtinPrototypes = [
        {value: Object.prototype, name: 'Object.prototype', hideValue: true},
        {value: Array.prototype, name: 'Array.prototype', hideValue: true},
        {value: Function.prototype, name: 'Function.prototype', hideValue: true},
        {value: Iterator.prototype, name: 'Iterator.prototype', hideValue: true},
    ];

    // 🔸 known prototype ?
    function proto(obj) {

        prototypes = builtinPrototypes.concat(prototypes);
        type = '• ' + typeName(obj);
        
        const result = {type: type, name: '(?)', value: obj }
        
        // test for prototypes
        for (const p of prototypes) {
            if (p.value === obj) {
                result.name = p.name;
                if (p.hideValue) result.value = '';
                break;
            }
        }

        result.name = arrow + result.name;
        return result;
    }

    // while value !== null, print it out
    while (value) {
        let p = proto(value);
        if (value === original) p.name = name;
        print(p.type, p.name, p.value);
        value = Object.getPrototypeOf(value);
    }

    // now, value === null
    print(`• Null`, arrow + '❌', 'null');
    log(line+'\n');
    
}

// export
module.exports = {printPrototypeChainOf};

Last updated