comparison core/src/luan/impl/LuanParser.java @ 181:5d2cb8c1f844

add web logging git-svn-id: https://luan-java.googlecode.com/svn/trunk@182 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Tue, 24 Jun 2014 07:16:53 +0000
parents 5351374efb6d
children cf939124461a
comparison
equal deleted inserted replaced
180:5351374efb6d 181:5d2cb8c1f844
1021 String s = StringLiteral(in); 1021 String s = StringLiteral(in);
1022 if( s != null ) { 1022 if( s != null ) {
1023 builder.add( new ConstExpr(s) ); 1023 builder.add( new ConstExpr(s) );
1024 return true; 1024 return true;
1025 } 1025 }
1026 /*
1026 Expressions exps = TemplateExpressions(in); 1027 Expressions exps = TemplateExpressions(in);
1027 if( exps != null ) { 1028 if( exps != null ) {
1028 builder.add(exps); 1029 builder.add(exps);
1029 return true; 1030 return true;
1030 } 1031 }
1032 */
1031 return false; 1033 return false;
1032 } 1034 }
1033 1035
1034 private Expressions ExpList(In in) throws ParseException { 1036 private Expressions ExpList(In in) throws ParseException {
1035 List<Expressions> builder = new ArrayList<Expressions>(); 1037 List<Expressions> builder = new ArrayList<Expressions>();