You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(kind==="a"&&!f)thrownewTypeError("Private accessor was defined without a getter");
226
+
if(typeofstate==="function" ? receiver!==state||!f : !state.has(receiver))thrownewTypeError("Cannot read private member from an object whose class did not declare it");
227
+
returnkind==="m" ? f : kind==="a" ? f.call(receiver) : f ? f.value : state.get(receiver);
if(kind==="m")thrownewTypeError("Private method is not writable");
232
+
if(kind==="a"&&!f)thrownewTypeError("Private accessor was defined without a setter");
233
+
if(typeofstate==="function" ? receiver!==state||!f : !state.has(receiver))thrownewTypeError("Cannot write private member to an object whose class did not declare it");
234
+
return(kind==="a" ? f.call(receiver,value) : f ? f.value=value : state.set(receiver,value)),value;
if(kind==="a"&&!f)thrownewTypeError("Private accessor was defined without a getter");
267
+
if(typeofstate==="function" ? receiver!==state||!f : !state.has(receiver))thrownewTypeError("Cannot read private member from an object whose class did not declare it");
268
+
returnkind==="m" ? f : kind==="a" ? f.call(receiver) : f ? f.value : state.get(receiver);
if(kind==="m")thrownewTypeError("Private method is not writable");
273
+
if(kind==="a"&&!f)thrownewTypeError("Private accessor was defined without a setter");
274
+
if(typeofstate==="function" ? receiver!==state||!f : !state.has(receiver))thrownewTypeError("Cannot write private member to an object whose class did not declare it");
275
+
return(kind==="a" ? f.call(receiver,value) : f ? f.value=value : state.set(receiver,value)),value;
0 commit comments