summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/ast/node.rb
diff options
context:
space:
mode:
authorJesse Wolfe <jes5199@gmail.com>2010-09-09 16:29:26 -0700
committerJesse Wolfe <jes5199@gmail.com>2010-09-09 16:29:26 -0700
commit1d93c4dd86181eb2663dd8df2e84719c2e1ffcdf (patch)
treefc0e6feee2558d0a59e70c3f7e3b16dee72f0235 /lib/puppet/parser/ast/node.rb
parent6860594c4d95855d5106fbf664a473e1ac4d3935 (diff)
parentce9bf1edcaac4901de6e0a7da413d1742d216eb0 (diff)
downloadpuppet-1d93c4dd86181eb2663dd8df2e84719c2e1ffcdf.tar.gz
puppet-1d93c4dd86181eb2663dd8df2e84719c2e1ffcdf.tar.xz
puppet-1d93c4dd86181eb2663dd8df2e84719c2e1ffcdf.zip
Merge remote branch 'paul/ticket/next/4685' into next
Conflicts resolved manually, by Paul Berry: lib/puppet/parser/ast/astarray.rb lib/puppet/parser/grammar.ra lib/puppet/parser/parser.rb (by rebuilding from grammar.ra)
Diffstat (limited to 'lib/puppet/parser/ast/node.rb')
-rw-r--r--lib/puppet/parser/ast/node.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/ast/node.rb b/lib/puppet/parser/ast/node.rb
index c19a24ce0..4951a6365 100644
--- a/lib/puppet/parser/ast/node.rb
+++ b/lib/puppet/parser/ast/node.rb
@@ -1,7 +1,7 @@
require 'puppet/parser/ast/top_level_construct'
class Puppet::Parser::AST::Node < Puppet::Parser::AST::TopLevelConstruct
- attr_accessor :names
+ attr_accessor :names, :context
def initialize(names, context = {})
raise ArgumentError, "names should be an array" unless names.is_a? Array