MCPcopy Create free account
hub / github.com/SplootCode/splootcode / deserializer

Method deserializer

packages/language-web/types/js/assignment.ts:63–70  ·  view source on GitHub ↗
(serializedNode: SerializedNode)

Source from the content-addressed store, hash-verified

61 }
62
63 static deserializer(serializedNode: SerializedNode): Assignment {
64 const node = new Assignment(null)
65 node.getLeft().removeChild(0)
66 node.deserializeChildSet('left', serializedNode)
67 node.getRight().removeChild(0)
68 node.deserializeChildSet('right', serializedNode)
69 return node
70 }
71
72 static register() {
73 const typeRegistration = new TypeRegistration()

Callers

nothing calls this directly

Calls 4

getLeftMethod · 0.95
getRightMethod · 0.95
removeChildMethod · 0.80
deserializeChildSetMethod · 0.80

Tested by

no test coverage detected