From 2cc08014315b96611e267c4d2c6a96c12084125e Mon Sep 17 00:00:00 2001 From: thurston Date: Sun, 11 Mar 2007 23:26:51 +0000 Subject: [PATCH] In the port from flex to ragel, the Name separator :: in Ragel code was lost. Added it back. git-svn-id: http://svn.complang.org/ragel/trunk@135 052ea7fc-9027-0410-9066-f65837a77df0 --- ragel/rlscan.rl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ragel/rlscan.rl b/ragel/rlscan.rl index 36f628b..f19536a 100644 --- a/ragel/rlscan.rl +++ b/ragel/rlscan.rl @@ -759,6 +759,9 @@ void Scanner::endSection( ) # Opening of longest match. "|*" => { token( TK_BarStar ); }; + # Separater for name references. + "::" => { token( TK_NameSep, tokstart, tokend ); }; + '}%%' => { updateCol(); endSection(); -- 2.7.4