11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci// Refs: https://github.com/nodejs/node/issues/10223 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_cirequire('../common'); 51cb0ef41Sopenharmony_ciconst vm = require('vm'); 61cb0ef41Sopenharmony_ciconst assert = require('assert'); 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ciconst context = vm.createContext({}); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_cilet code = ` 111cb0ef41Sopenharmony_ci Object.defineProperty(this, 'foo', {value: 5}); 121cb0ef41Sopenharmony_ci Object.getOwnPropertyDescriptor(this, 'foo'); 131cb0ef41Sopenharmony_ci`; 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_cilet desc = vm.runInContext(code, context); 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_ciassert.strictEqual(desc.writable, false); 181cb0ef41Sopenharmony_ci 191cb0ef41Sopenharmony_ci// Check that interceptors work for symbols. 201cb0ef41Sopenharmony_cicode = ` 211cb0ef41Sopenharmony_ci const bar = Symbol('bar'); 221cb0ef41Sopenharmony_ci Object.defineProperty(this, bar, {value: 6}); 231cb0ef41Sopenharmony_ci Object.getOwnPropertyDescriptor(this, bar); 241cb0ef41Sopenharmony_ci`; 251cb0ef41Sopenharmony_ci 261cb0ef41Sopenharmony_cidesc = vm.runInContext(code, context); 271cb0ef41Sopenharmony_ci 281cb0ef41Sopenharmony_ciassert.strictEqual(desc.value, 6); 29