comparison src/luan/interp/LuanParser.java @ 55:9381b23ea9e1

various fixes git-svn-id: https://luan-java.googlecode.com/svn/trunk@56 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 04 Jan 2013 04:50:18 +0000
parents f5b27ef14d73
children c84274b18f0c
comparison
equal deleted inserted replaced
54:f5b27ef14d73 55:9381b23ea9e1
1090 Rule Spaces() { 1090 Rule Spaces() {
1091 return ZeroOrMore( 1091 return ZeroOrMore(
1092 FirstOf( 1092 FirstOf(
1093 AnyOf(" \t"), 1093 AnyOf(" \t"),
1094 Comment(), 1094 Comment(),
1095 Sequence( '\\', EndOfLine() ), 1095 Sequence( '\\', EndOfLine() )
1096 Sequence( AnyOf("\r\n"), parens > 0 )
1097 ) 1096 )
1098 ); 1097 );
1099 } 1098 }
1100 1099
1101 Rule Comment() { 1100 Rule Comment() {