diff options
author | Luke Kanies <luke@madstop.com> | 2007-08-16 21:21:40 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2007-08-16 21:21:40 -0500 |
commit | a846ea900f9fa7a2baaa4fbd0742f080e7fd7a04 (patch) | |
tree | 5e9d6127c2d99992cf604f3e59767c916b15c005 /lib/puppet/parser/parser_support.rb | |
parent | 1527f4a615f9c429e90becd90f9ed1e8c1e83249 (diff) | |
download | puppet-a846ea900f9fa7a2baaa4fbd0742f080e7fd7a04.tar.gz puppet-a846ea900f9fa7a2baaa4fbd0742f080e7fd7a04.tar.xz puppet-a846ea900f9fa7a2baaa4fbd0742f080e7fd7a04.zip |
The new parser configuration object works now,
but the rest of the compiling process is hosed
(although the parser itself should still be fine).
The configuration object is unifying a lot of work
that was scattered around either the interpreter or
the scopes, and it simplifies the whole system.
However, its new simplicity has made the complexity
of the rest of the system that much more apparent,
and I am resolved to fixing the system rather than
hacking it sufficiently to just make it work.
Diffstat (limited to 'lib/puppet/parser/parser_support.rb')
-rw-r--r-- | lib/puppet/parser/parser_support.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/puppet/parser/parser_support.rb b/lib/puppet/parser/parser_support.rb index 728f75a69..6d069dc07 100644 --- a/lib/puppet/parser/parser_support.rb +++ b/lib/puppet/parser/parser_support.rb @@ -1,3 +1,5 @@ +# I pulled this into a separate file, because I got +# tired of rebuilding the parser.rb file all the time. class Puppet::Parser::Parser require 'puppet/parser/functions' |