comparison core/src/luan/modules/PackageLuan.java @ 435:5b36f663a1b8

make members lower case
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 03 May 2015 21:28:49 -0600
parents c6bcb8859b93
children 2e79b47d02a2
comparison
equal deleted inserted replaced
434:472fc70853cd 435:5b36f663a1b8
60 } 60 }
61 return mod; 61 return mod;
62 } 62 }
63 63
64 static String read(LuanState luan,String uri) throws LuanException { 64 static String read(LuanState luan,String uri) throws LuanException {
65 LuanTable t = IoLuan.Uri(luan,uri); 65 LuanTable t = IoLuan.uri(luan,uri);
66 if( t == null ) 66 if( t == null )
67 return null; 67 return null;
68 LuanFunction existsFn = (LuanFunction)t.get(luan,"exists"); 68 LuanFunction existsFn = (LuanFunction)t.get(luan,"exists");
69 boolean exists = (Boolean)Luan.first(luan.call(existsFn)); 69 boolean exists = (Boolean)Luan.first(luan.call(existsFn));
70 if( !exists ) 70 if( !exists )