예제 #1
0
 private void EnsureAppend()
 {
     if (_appendMethod == null)
     {
         var appendMeth = VariableDict["append"];
         _appendMethod = new ListAppendBoundBuiltinMethodInfo(this, (BuiltinMethodInfo)appendMeth.First());
     }
 }
예제 #2
0
파일: ListInfo.cs 프로젝트: TerabyteX/main
 private void EnsureAppend()
 {
     if (_appendMethod == null) {
         var appendMeth = VariableDict["append"];
         _appendMethod = new ListAppendBoundBuiltinMethodInfo(this, (BuiltinMethodInfo)appendMeth.First());
     }
 }