comparison core/src/luan/impl/LuanCompiler.java @ 691:5b9c7f8529ee

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 18 Apr 2016 17:37:19 -0600
parents 49f3d290bebd
children b620b8e1010f
comparison
equal deleted inserted replaced
690:6a489a6b3cbc 691:5b9c7f8529ee
55 if( fnClass != null ) 55 if( fnClass != null )
56 return fnClass; 56 return fnClass;
57 } 57 }
58 return parser.RequiredModule(); 58 return parser.RequiredModule();
59 } catch(ParseException e) { 59 } catch(ParseException e) {
60 e.printStackTrace(); 60 //e.printStackTrace();
61 throw new LuanException( e.getFancyMessage() ); 61 throw new LuanException( e.getFancyMessage() );
62 } 62 }
63 } 63 }
64 64
65 public static String toJava(String sourceName,String sourceText) throws LuanException { 65 public static String toJava(String sourceName,String sourceText) throws LuanException {