Chrome Devtools - Warum zeigt variable Anzeigen in Uhr, aber nicht unter Geltungsbereich

a = {test1: 'test1'}
b = {test2: 'test2', __proto__: a}

b >> {test2: "test2", [[Prototype]]: Object}
b.test1 >> 'test1'
SAMER SAEID