> diff --git a/lib/puppet/parser/lexer.rb b/lib/puppet/parser/lexer.rb > index 2a1f88e..40aa4da 100644 > --- a/lib/puppet/parser/lexer.rb > +++ b/lib/puppet/parser/lexer.rb > @@ -129,6 +129,10 @@ class Puppet::Parser::Lexer > ':' => :COLON, > '@' => :AT, > '<<|' => :LLCOLLECT, > + '->' => :IN_EDGE, > + '<-' => :OUT_EDGE, > + '~>' => :IN_EDGE_SUB, > + '<~' => :OUTEDGE_SUB, > '|>>' => :RRCOLLECT, > '<|' => :LCOLLECT, > '|>' => :RCOLLECT, >
Missing an underscore in "OUT_EDGE_SUB" I think. -- Markus (still reading...) ----------------------------------------------------------- The power of accurate observation is commonly called cynicism by those who have not got it. ~George Bernard Shaw ------------------------------------------------------------ -- You received this message because you are subscribed to the Google Groups "Puppet Developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en.
