comparison src/luan/impl/LuanImpl.java @ 1464:465b4a0dae4a

empty list vs map
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 03 Apr 2020 10:04:52 -0600
parents e0cf0d108a77
children d9a5405a3102
comparison
equal deleted inserted replaced
1463:fb003c4003dd 1464:465b4a0dae4a
238 Object value = tblFld.value; 238 Object value = tblFld.value;
239 if( key != null && value != null ) 239 if( key != null && value != null )
240 table.rawPut(key,value); 240 table.rawPut(key,value);
241 } else { 241 } else {
242 i++; 242 i++;
243 if( fld != null ) 243 table.rawPut(i,fld);
244 table.rawPut(i,fld);
245 } 244 }
246 } 245 }
247 return table; 246 return table;
248 } 247 }
249 248