コード例 #1
0
ファイル: SetDispatchNode.java プロジェクト: wdv4758h/ZipPy
 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;
 }