comparison src/luan/interp/LuanParser.java @ 56:c84274b18f0c

various git-svn-id: https://luan-java.googlecode.com/svn/trunk@57 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 04 Jan 2013 21:35:55 +0000
parents 9381b23ea9e1
children a68ccb7aaa9c
comparison
equal deleted inserted replaced
55:9381b23ea9e1 56:c84274b18f0c
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 )
1096 ) 1097 )
1097 ); 1098 );
1098 } 1099 }
1099 1100
1100 Rule Comment() { 1101 Rule Comment() {