comparison src/luan/interp/LuanParser.java @ 92:d03022acea47

don't allow "%>" in output statement string git-svn-id: https://luan-java.googlecode.com/svn/trunk@93 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 07 Mar 2013 23:09:01 +0000
parents 6db8f286fa6c
children b19988270d74
comparison
equal deleted inserted replaced
91:1f8b6edc2b08 92:d03022acea47
249 ZeroOrMore( 249 ZeroOrMore(
250 FirstOf( 250 FirstOf(
251 Sequence( 251 Sequence(
252 OneOrMore( 252 OneOrMore(
253 TestNot("<%"), 253 TestNot("<%"),
254 TestNot("%>"),
254 ANY 255 ANY
255 ), 256 ),
256 addToExpList(builder.get(),new ConstExpr(match())) 257 addToExpList(builder.get(),new ConstExpr(match()))
257 ), 258 ),
258 Sequence( 259 Sequence(