From 9e9ef1acc6231254e52b96257ed1e81475d2d1bc Mon Sep 17 00:00:00 2001 From: luke Date: Sat, 13 May 2006 18:27:22 +0000 Subject: The "collectable" syntax now works end-to-end -- the parser correctly recognizes it, the AST objects retain the settings, the scopes do the right conversion, the interpreter stores them all in the database, and then it strips the collectable objects out before sending the object list to the client git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1189 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/parser/lexer.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/puppet/parser/lexer.rb') diff --git a/lib/puppet/parser/lexer.rb b/lib/puppet/parser/lexer.rb index e3fc9ded7..65a513624 100644 --- a/lib/puppet/parser/lexer.rb +++ b/lib/puppet/parser/lexer.rb @@ -34,6 +34,9 @@ module Puppet %r{,} => :COMMA, %r{\.} => :DOT, %r{:} => :COLON, + %r{@} => :AT, + %r{<\|} => :LCOLLECT, + %r{\|>} => :RCOLLECT, %r{;} => :SEMIC, %r{\?} => :QMARK, %r{\\} => :BACKSLASH, -- cgit