On Mon, Sep 22, 2014 at 12:10 PM, Tristan Smith <tr...@dreamlibrarian.com> wrote:
> One more, mostly just a 'wouldn't it be nice if this were clearly > handled?' Having a comma at the end of an assignment like the below appears > to cause confusion; mostly at this point my gripe is that the error line is > reported as the enclosing class/define/whatever instead of at the line with > the errant comma. > > puppet parser validate --parser=future init.pp > Error: Could not parse for environment production: This Array Expression > is not productive. A Host Class Definition can not end with a non > productive construct at init.pp:1:1 > > class a { > > $foo = "bar", > $banana = "apple" > > } > > > On Monday, September 22, 2014 11:48:20 AM UTC-7, Tristan Smith wrote: >> >> So, new behavior that I'm not sure is intentional. File['blah'] works >> fine, File ['blah'] is now illegal - the additional whitespace causes the >> below stupendously readable error on puppet parser validate. >> >> Error: Could not parse for environment production: Expression is not >> valid as a resource, resource-default, or resource-override at (slice () >> 'file'):(slice () 'line'):(slice ([] (cat '' (str $myvar) '')) 'pos') >> >> Is this a known bug I've failed to find on the ticket system, or intended >> behavior I've just missed in the notes? If not, I'll go chase it as a bug. >> > Tristan, both of those are correct errors. The space between the "File" and the "['blah']" is an error because it makes it ambiguous about what was intended. This happens because puppet doesn't require any statement terminators (a semicolon in a lot of languages serves this purpose). So this is ambiguous about whether you meant to have an expression of the File type followed by creating an array or if you meant the File type parameterized with the title 'blah', both could be valid. In both of the cases that you have here, that error message is pretty atrocious. The one with "slice" in it looks like it is dumping out some sort of AST structures for some reason in the location slot of the message. The error about the "non-productive construct" is a little trickier since the error is about the class, but is caused by the comma. I think you are right that it should show the location of the comma rather than the class. Can you file both of these as bugs in the PUP project and include what version of puppet you are using? > -- > You received this message because you are subscribed to the Google Groups > "Puppet Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to puppet-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/puppet-users/27b39605-a929-4271-8a4b-b693337b7207%40googlegroups.com > <https://groups.google.com/d/msgid/puppet-users/27b39605-a929-4271-8a4b-b693337b7207%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- Andrew Parker a...@puppetlabs.com Freenode: zaphod42 Twitter: @aparker42 Software Developer *Join us at **PuppetConf 2014, **September 20-24 in San Francisco - * www.puppetconf.com -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/CANhgQXsDUBNAVUso_d4yWO_diBMXEgwwhvP-1aLaEijzzYaPhQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.