MCPcopy Index your code
hub / github.com/nodejs/node / FrozenDict

Class FrozenDict

deps/v8/tools/testrunner/local/utils.py:217–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215
216
217class FrozenDict(dict):
218 def __setitem__(self, *args, **kwargs):
219 raise Exception('Tried to mutate a frozen dict')
220
221 def update(self, *args, **kwargs):
222 raise Exception('Tried to mutate a frozen dict')
223
224
225def Freeze(obj):

Callers 1

FreezeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected