Example #1
0
 public LinkedSetDispatchNode(
     String attributeId, AttributeWriteNode write, PythonObject primary, SetDispatchNode next) {
   super(attributeId);
   this.check = LayoutCheckNode.create(primary, attributeId, true);
   this.write = write;
   this.next = next;
 }