puppet 2.7.26 → 3.0.0.rc4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- data/CHANGELOG +533 -204
- data/Gemfile +8 -24
- data/Gemfile.lock +44 -0
- data/LICENSE +1 -1
- data/README.md +2 -2
- data/README_DEVELOPER.md +18 -210
- data/Rakefile +30 -47
- data/bin/puppet +5 -3
- data/conf/auth.conf +3 -3
- data/{ext → conf}/osx/PackageInfo.plist +0 -0
- data/{ext → conf}/osx/createpackage.sh +0 -0
- data/conf/osx/preflight +24 -0
- data/conf/redhat/client.init +8 -8
- data/{ext/redhat/puppet.spec.erb → conf/redhat/puppet.spec} +29 -46
- data/conf/redhat/queue.init +105 -0
- data/conf/redhat/rundir-perms.patch +13 -13
- data/conf/redhat/server.init +4 -4
- data/conf/solaris/pkginfo +1 -1
- data/conf/suse/puppet.spec +8 -3
- data/conf/windows/eventlog/puppetres.dll +0 -0
- data/ext/emacs/puppet-mode.el +204 -150
- data/ext/nagios/naggen +1 -1
- data/ext/puppet-test +1 -1
- data/ext/puppetlisten/puppetlisten.rb +1 -2
- data/ext/puppetlisten/puppetrun.rb +1 -2
- data/ext/rack/files/config.ru +21 -3
- data/ext/regexp_nodes/environment/development +2 -0
- data/ext/regexp_nodes/parameters/{environment → service}/prod +0 -0
- data/ext/regexp_nodes/parameters/{environment → service}/qa +0 -0
- data/ext/regexp_nodes/parameters/service/sandbox +1 -0
- data/ext/regexp_nodes/regexp_nodes.rb +115 -59
- data/ext/upload_facts.rb +0 -1
- data/install.rb +10 -10
- data/lib/puppet.rb +49 -24
- data/lib/puppet/agent.rb +40 -16
- data/lib/puppet/agent/disabler.rb +53 -0
- data/lib/puppet/agent/locker.rb +18 -24
- data/lib/puppet/application.rb +93 -72
- data/lib/puppet/application/agent.rb +29 -47
- data/lib/puppet/application/apply.rb +40 -39
- data/lib/puppet/application/cert.rb +9 -11
- data/lib/puppet/application/certificate.rb +7 -2
- data/lib/puppet/application/certificate_request.rb +3 -0
- data/lib/puppet/application/certificate_revocation_list.rb +3 -0
- data/lib/puppet/application/describe.rb +1 -3
- data/lib/puppet/application/device.rb +15 -16
- data/lib/puppet/application/doc.rb +12 -11
- data/lib/puppet/application/face_base.rb +9 -13
- data/lib/puppet/application/filebucket.rb +2 -8
- data/lib/puppet/application/inspect.rb +3 -6
- data/lib/puppet/application/instrumentation_data.rb +3 -0
- data/lib/puppet/application/instrumentation_listener.rb +3 -0
- data/lib/puppet/application/instrumentation_probe.rb +3 -0
- data/lib/puppet/application/kick.rb +2 -8
- data/lib/puppet/application/master.rb +9 -15
- data/lib/puppet/application/module.rb +0 -7
- data/lib/puppet/application/queue.rb +7 -6
- data/lib/puppet/application/resource.rb +1 -5
- data/lib/puppet/application/resource_type.rb +3 -0
- data/lib/puppet/application/secret_agent.rb +3 -0
- data/lib/puppet/configurer.rb +87 -88
- data/lib/puppet/configurer/downloader.rb +8 -23
- data/lib/puppet/configurer/fact_handler.rb +5 -17
- data/lib/puppet/configurer/plugin_handler.rb +4 -23
- data/lib/puppet/daemon.rb +24 -6
- data/lib/puppet/data_binding.rb +11 -0
- data/lib/puppet/defaults.rb +1058 -518
- data/lib/puppet/error.rb +31 -25
- data/lib/puppet/external/dot.rb +1 -1
- data/lib/puppet/external/nagios/base.rb +8 -4
- data/lib/puppet/face/ca.rb +1 -1
- data/lib/puppet/face/catalog.rb +1 -2
- data/lib/puppet/face/certificate.rb +12 -0
- data/lib/puppet/face/config.rb +3 -0
- data/lib/puppet/face/help.rb +92 -28
- data/lib/puppet/face/help/action.erb +36 -3
- data/lib/puppet/face/help/face.erb +35 -3
- data/lib/puppet/face/help/global.erb +8 -12
- data/lib/puppet/face/help/man.erb +20 -2
- data/lib/puppet/face/instrumentation_data.rb +1 -0
- data/lib/puppet/face/instrumentation_listener.rb +1 -0
- data/lib/puppet/face/instrumentation_probe.rb +1 -0
- data/lib/puppet/face/module.rb +2 -0
- data/lib/puppet/face/module/build.rb +32 -6
- data/lib/puppet/face/module/changes.rb +1 -0
- data/lib/puppet/face/module/generate.rb +1 -0
- data/lib/puppet/face/module/install.rb +10 -41
- data/lib/puppet/face/module/list.rb +2 -19
- data/lib/puppet/face/module/search.rb +12 -6
- data/lib/puppet/face/module/uninstall.rb +3 -18
- data/lib/puppet/face/module/upgrade.rb +2 -9
- data/lib/puppet/face/node/clean.rb +25 -27
- data/lib/puppet/face/report.rb +2 -4
- data/lib/puppet/face/resource.rb +1 -1
- data/lib/puppet/feature/base.rb +9 -3
- data/lib/puppet/feature/rails.rb +18 -0
- data/lib/puppet/feature/rdoc1.rb +16 -0
- data/lib/puppet/file_bucket/dipper.rb +3 -2
- data/lib/puppet/file_serving/base.rb +4 -8
- data/lib/puppet/file_serving/configuration.rb +1 -12
- data/lib/puppet/file_serving/configuration/parser.rb +1 -1
- data/lib/puppet/file_serving/metadata.rb +0 -14
- data/lib/puppet/file_serving/mount/plugins.rb +10 -1
- data/lib/puppet/file_serving/terminus_selector.rb +15 -13
- data/lib/puppet/forge.rb +29 -13
- data/lib/puppet/forge/cache.rb +1 -1
- data/lib/puppet/forge/errors.rb +69 -0
- data/lib/puppet/forge/repository.rb +84 -21
- data/lib/puppet/indirector/catalog/active_record.rb +2 -12
- data/lib/puppet/indirector/catalog/compiler.rb +8 -18
- data/lib/puppet/indirector/catalog/json.rb +6 -0
- data/lib/puppet/indirector/catalog/static_compiler.rb +3 -2
- data/lib/puppet/indirector/certificate/rest.rb +1 -0
- data/lib/puppet/indirector/certificate_status/file.rb +0 -5
- data/lib/puppet/indirector/data_binding/hiera.rb +6 -0
- data/lib/puppet/indirector/data_binding/none.rb +5 -0
- data/lib/puppet/indirector/exec.rb +8 -18
- data/lib/puppet/indirector/face.rb +5 -4
- data/lib/puppet/indirector/facts/facter.rb +6 -33
- data/lib/puppet/indirector/facts/network_device.rb +0 -1
- data/lib/puppet/indirector/file_bucket_file/file.rb +0 -4
- data/lib/puppet/indirector/file_bucket_file/selector.rb +0 -4
- data/lib/puppet/indirector/file_content/rest.rb +2 -0
- data/lib/puppet/indirector/hiera.rb +69 -0
- data/lib/puppet/indirector/indirection.rb +20 -26
- data/lib/puppet/indirector/json.rb +76 -0
- data/lib/puppet/indirector/ldap.rb +3 -2
- data/lib/puppet/indirector/node/active_record.rb +1 -0
- data/lib/puppet/indirector/node/exec.rb +9 -0
- data/lib/puppet/indirector/node/ldap.rb +6 -3
- data/lib/puppet/indirector/node/plain.rb +1 -0
- data/lib/puppet/indirector/none.rb +9 -0
- data/lib/puppet/indirector/queue.rb +1 -2
- data/lib/puppet/indirector/report/processor.rb +2 -3
- data/lib/puppet/indirector/report/rest.rb +1 -7
- data/lib/puppet/indirector/request.rb +80 -18
- data/lib/puppet/indirector/resource/active_record.rb +0 -3
- data/lib/puppet/indirector/resource/ral.rb +0 -4
- data/lib/puppet/indirector/resource/rest.rb +0 -9
- data/lib/puppet/indirector/resource/store_configs.rb +0 -3
- data/lib/puppet/indirector/resource_type/parser.rb +30 -1
- data/lib/puppet/indirector/rest.rb +103 -126
- data/lib/puppet/indirector/run/local.rb +0 -4
- data/lib/puppet/indirector/run/rest.rb +0 -6
- data/lib/puppet/indirector/terminus.rb +0 -20
- data/lib/puppet/indirector/yaml.rb +11 -5
- data/lib/puppet/interface.rb +6 -14
- data/lib/puppet/interface/action.rb +21 -3
- data/lib/puppet/interface/action_builder.rb +5 -0
- data/lib/puppet/interface/action_manager.rb +1 -1
- data/lib/puppet/interface/documentation.rb +12 -0
- data/lib/puppet/interface/face_collection.rb +1 -1
- data/lib/puppet/interface/option.rb +19 -3
- data/lib/puppet/interface/option_manager.rb +27 -9
- data/lib/puppet/metatype/manager.rb +1 -0
- data/lib/puppet/module.rb +40 -83
- data/lib/puppet/module_tool.rb +42 -5
- data/lib/puppet/module_tool/applications/builder.rb +1 -1
- data/lib/puppet/module_tool/applications/installer.rb +11 -11
- data/lib/puppet/module_tool/applications/searcher.rb +15 -2
- data/lib/puppet/module_tool/applications/unpacker.rb +4 -8
- data/lib/puppet/module_tool/applications/upgrader.rb +6 -5
- data/lib/puppet/module_tool/errors/base.rb +1 -1
- data/lib/puppet/module_tool/errors/installer.rb +24 -4
- data/lib/puppet/module_tool/install_directory.rb +41 -0
- data/lib/puppet/module_tool/metadata.rb +4 -4
- data/lib/puppet/module_tool/shared_behaviors.rb +6 -6
- data/lib/puppet/network/auth_config_parser.rb +81 -0
- data/lib/puppet/network/authconfig.rb +49 -147
- data/lib/puppet/network/authorization.rb +20 -62
- data/lib/puppet/network/authstore.rb +43 -27
- data/lib/puppet/network/formats.rb +10 -20
- data/lib/puppet/network/http/api/v1.rb +1 -1
- data/lib/puppet/network/http/connection.rb +184 -0
- data/lib/puppet/network/http/handler.rb +4 -14
- data/lib/puppet/network/http/mongrel.rb +5 -25
- data/lib/puppet/network/http/rack.rb +2 -34
- data/lib/puppet/network/http/rack/httphandler.rb +0 -3
- data/lib/puppet/network/http/rack/rest.rb +2 -7
- data/lib/puppet/network/http/webrick.rb +9 -32
- data/lib/puppet/network/http_pool.rb +10 -48
- data/lib/puppet/network/resolver.rb +85 -0
- data/lib/puppet/network/rights.rb +33 -89
- data/lib/puppet/network/server.rb +14 -43
- data/lib/puppet/node.rb +13 -11
- data/lib/puppet/node/environment.rb +29 -12
- data/lib/puppet/node/facts.rb +13 -38
- data/lib/puppet/parameter.rb +0 -21
- data/lib/puppet/parameter/package_options.rb +26 -0
- data/lib/puppet/parser/ast.rb +2 -13
- data/lib/puppet/parser/ast/function.rb +0 -2
- data/lib/puppet/parser/ast/leaf.rb +12 -22
- data/lib/puppet/parser/ast/resource.rb +3 -10
- data/lib/puppet/parser/ast/resource_defaults.rb +1 -1
- data/lib/puppet/parser/ast/resource_override.rb +1 -4
- data/lib/puppet/parser/ast/resourceparam.rb +4 -7
- data/lib/puppet/parser/ast/selector.rb +7 -1
- data/lib/puppet/parser/ast/vardef.rb +0 -2
- data/lib/puppet/parser/collector.rb +2 -1
- data/lib/puppet/parser/compiler.rb +43 -46
- data/lib/puppet/parser/files.rb +15 -20
- data/lib/puppet/parser/functions.rb +8 -39
- data/lib/puppet/parser/functions/extlookup.rb +8 -8
- data/lib/puppet/parser/functions/file.rb +18 -18
- data/lib/puppet/parser/functions/fqdn_rand.rb +2 -2
- data/lib/puppet/parser/functions/generate.rb +3 -3
- data/lib/puppet/parser/functions/include.rb +6 -1
- data/lib/puppet/parser/functions/require.rb +16 -21
- data/lib/puppet/parser/functions/shellquote.rb +29 -21
- data/lib/puppet/parser/functions/versioncmp.rb +2 -5
- data/lib/puppet/parser/grammar.ra +44 -14
- data/lib/puppet/parser/lexer.rb +101 -169
- data/lib/puppet/parser/parser.rb +1103 -1014
- data/lib/puppet/parser/parser_support.rb +10 -61
- data/lib/puppet/parser/relationship.rb +1 -3
- data/lib/puppet/parser/resource.rb +21 -56
- data/lib/puppet/parser/scope.rb +138 -165
- data/lib/puppet/parser/templatewrapper.rb +25 -20
- data/lib/puppet/parser/type_loader.rb +33 -67
- data/lib/puppet/parser/yaml_trimmer.rb +1 -1
- data/lib/puppet/property.rb +5 -4
- data/lib/puppet/provider.rb +133 -28
- data/lib/puppet/provider/augeas/augeas.rb +66 -6
- data/lib/puppet/provider/command.rb +25 -0
- data/lib/puppet/provider/cron/crontab.rb +1 -1
- data/lib/puppet/provider/exec.rb +14 -9
- data/lib/puppet/provider/exec/posix.rb +1 -1
- data/lib/puppet/provider/exec/windows.rb +2 -3
- data/lib/puppet/provider/file/windows.rb +29 -10
- data/lib/puppet/provider/group/groupadd.rb +3 -2
- data/lib/puppet/provider/group/ldap.rb +1 -1
- data/lib/puppet/provider/group/windows_adsi.rb +1 -1
- data/lib/puppet/provider/host/parsed.rb +1 -1
- data/lib/puppet/provider/ldap.rb +1 -5
- data/lib/puppet/provider/mount/parsed.rb +3 -3
- data/lib/puppet/provider/nameservice.rb +22 -22
- data/lib/puppet/provider/nameservice/directoryservice.rb +58 -121
- data/lib/puppet/provider/package/apt.rb +8 -11
- data/lib/puppet/provider/package/blastwave.rb +3 -3
- data/lib/puppet/provider/package/dpkg.rb +1 -1
- data/lib/puppet/provider/package/freebsd.rb +2 -2
- data/lib/puppet/provider/package/gem.rb +1 -1
- data/lib/puppet/provider/package/macports.rb +11 -9
- data/lib/puppet/provider/package/msi.rb +37 -32
- data/lib/puppet/provider/package/openbsd.rb +1 -1
- data/lib/puppet/provider/package/pacman.rb +69 -6
- data/lib/puppet/provider/package/pkg.rb +126 -75
- data/lib/puppet/provider/package/pkgin.rb +60 -0
- data/lib/puppet/provider/package/pkgutil.rb +32 -20
- data/lib/puppet/provider/package/portage.rb +2 -2
- data/lib/puppet/provider/package/sun.rb +83 -116
- data/lib/puppet/provider/package/sunfreeware.rb +1 -1
- data/lib/puppet/provider/package/up2date.rb +2 -3
- data/lib/puppet/provider/package/windows.rb +130 -0
- data/lib/puppet/provider/package/windows/exe_package.rb +70 -0
- data/lib/puppet/provider/package/windows/msi_package.rb +62 -0
- data/lib/puppet/provider/package/windows/package.rb +79 -0
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +2 -2
- data/lib/puppet/provider/service/base.rb +1 -0
- data/lib/puppet/provider/service/bsd.rb +7 -5
- data/lib/puppet/provider/service/daemontools.rb +1 -1
- data/lib/puppet/provider/service/debian.rb +1 -1
- data/lib/puppet/provider/service/freebsd.rb +9 -9
- data/lib/puppet/provider/service/launchd.rb +7 -11
- data/lib/puppet/provider/service/redhat.rb +2 -2
- data/lib/puppet/provider/service/runit.rb +9 -2
- data/lib/puppet/provider/service/smf.rb +14 -2
- data/lib/puppet/provider/service/systemd.rb +3 -3
- data/lib/puppet/provider/service/upstart.rb +6 -6
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +1 -0
- data/lib/puppet/provider/user/user_role_add.rb +1 -1
- data/lib/puppet/provider/user/useradd.rb +3 -8
- data/lib/puppet/provider/user/windows_adsi.rb +1 -12
- data/lib/puppet/provider/zfs/{solaris.rb → zfs.rb} +16 -5
- data/lib/puppet/provider/zone/solaris.rb +10 -13
- data/lib/puppet/provider/zpool/{solaris.rb → zpool.rb} +11 -4
- data/lib/puppet/rails.rb +6 -4
- data/lib/puppet/rails/database/schema.rb +9 -4
- data/lib/puppet/rails/inventory_node.rb +13 -26
- data/lib/puppet/reference/configuration.rb +1 -2
- data/lib/puppet/reference/metaparameter.rb +1 -2
- data/lib/puppet/reports/http.rb +9 -10
- data/lib/puppet/reports/rrdgraph.rb +2 -2
- data/lib/puppet/reports/store.rb +1 -2
- data/lib/puppet/reports/tagmail.rb +6 -6
- data/lib/puppet/resource.rb +69 -64
- data/lib/puppet/resource/catalog.rb +11 -60
- data/lib/puppet/resource/status.rb +6 -32
- data/lib/puppet/resource/type.rb +94 -34
- data/lib/puppet/resource/type_collection.rb +17 -8
- data/lib/puppet/run.rb +4 -26
- data/lib/puppet/settings.rb +1315 -0
- data/lib/puppet/settings/base_setting.rb +163 -0
- data/lib/puppet/{util/settings → settings}/boolean_setting.rb +7 -3
- data/lib/puppet/settings/directory_setting.rb +7 -0
- data/lib/puppet/settings/errors.rb +11 -0
- data/lib/puppet/{util/settings → settings}/file_setting.rb +4 -20
- data/lib/puppet/settings/path_setting.rb +10 -0
- data/lib/puppet/settings/string_setting.rb +12 -0
- data/lib/puppet/simple_graph.rb +2 -5
- data/lib/puppet/ssl/base.rb +2 -2
- data/lib/puppet/ssl/certificate_authority.rb +4 -5
- data/lib/puppet/ssl/certificate_authority/interface.rb +5 -7
- data/lib/puppet/ssl/certificate_factory.rb +1 -2
- data/lib/puppet/ssl/certificate_request.rb +2 -2
- data/lib/puppet/ssl/certificate_revocation_list.rb +53 -30
- data/lib/puppet/ssl/configuration.rb +32 -0
- data/lib/puppet/ssl/host.rb +9 -37
- data/lib/puppet/status.rb +2 -6
- data/lib/puppet/test/test_helper.rb +58 -25
- data/lib/puppet/transaction.rb +6 -9
- data/lib/puppet/transaction/event.rb +13 -24
- data/lib/puppet/transaction/event_manager.rb +1 -1
- data/lib/puppet/transaction/report.rb +2 -41
- data/lib/puppet/transaction/resource_harness.rb +2 -3
- data/lib/puppet/type.rb +18 -191
- data/lib/puppet/type/augeas.rb +1 -1
- data/lib/puppet/type/cron.rb +1 -1
- data/lib/puppet/type/exec.rb +6 -4
- data/lib/puppet/type/file.rb +33 -44
- data/lib/puppet/type/file/content.rb +13 -9
- data/lib/puppet/type/file/ensure.rb +1 -1
- data/lib/puppet/type/file/mode.rb +1 -1
- data/lib/puppet/type/file/selcontext.rb +2 -6
- data/lib/puppet/type/file/source.rb +8 -4
- data/lib/puppet/type/filebucket.rb +3 -2
- data/lib/puppet/type/mount.rb +1 -11
- data/lib/puppet/type/package.rb +40 -23
- data/lib/puppet/type/schedule.rb +127 -21
- data/lib/puppet/type/scheduled_task.rb +1 -1
- data/lib/puppet/type/service.rb +2 -3
- data/lib/puppet/type/tidy.rb +8 -17
- data/lib/puppet/type/yumrepo.rb +35 -7
- data/lib/puppet/type/zfs.rb +4 -0
- data/lib/puppet/type/zone.rb +48 -38
- data/lib/puppet/util.rb +178 -249
- data/lib/puppet/util/adsi.rb +23 -25
- data/lib/puppet/util/autoload.rb +184 -114
- data/lib/puppet/util/backups.rb +3 -2
- data/lib/puppet/util/colors.rb +0 -1
- data/lib/puppet/util/command_line.rb +42 -104
- data/lib/puppet/util/command_line/puppet_option_parser.rb +89 -0
- data/lib/puppet/util/command_line/trollop.rb +824 -0
- data/lib/puppet/util/config_timeout.rb +24 -0
- data/lib/puppet/util/constant_inflector.rb +15 -7
- data/lib/puppet/util/diff.rb +2 -2
- data/lib/puppet/util/docs.rb +1 -2
- data/lib/puppet/util/errors.rb +3 -4
- data/lib/puppet/util/execution.rb +239 -14
- data/lib/puppet/util/execution_stub.rb +2 -2
- data/lib/puppet/util/feature.rb +2 -4
- data/lib/puppet/util/fileparsing.rb +1 -1
- data/lib/puppet/util/filetype.rb +12 -10
- data/lib/puppet/util/json_lockfile.rb +41 -0
- data/lib/puppet/util/ldap/connection.rb +4 -7
- data/lib/puppet/util/lockfile.rb +62 -0
- data/lib/puppet/util/log.rb +16 -20
- data/lib/puppet/util/log/destinations.rb +12 -27
- data/lib/puppet/util/logging.rb +95 -3
- data/lib/puppet/util/metric.rb +0 -6
- data/lib/puppet/util/monkey_patches.rb +101 -82
- data/lib/puppet/util/monkey_patches/lines.rb +13 -0
- data/lib/puppet/util/network_device/cisco/device.rb +2 -2
- data/lib/puppet/util/network_device/config.rb +1 -0
- data/lib/puppet/util/network_device/transport.rb +2 -0
- data/lib/puppet/util/pidlock.rb +13 -77
- data/lib/puppet/util/platform.rb +0 -7
- data/lib/puppet/util/posix.rb +10 -0
- data/lib/puppet/util/rdoc.rb +12 -8
- data/lib/puppet/util/reference.rb +3 -3
- data/lib/puppet/util/rubygems.rb +55 -0
- data/lib/puppet/util/run_mode.rb +7 -16
- data/lib/puppet/util/selinux.rb +36 -31
- data/lib/puppet/util/storage.rb +14 -19
- data/lib/puppet/util/suidmanager.rb +27 -2
- data/lib/puppet/util/windows.rb +9 -6
- data/lib/puppet/util/windows/error.rb +1 -1
- data/lib/puppet/util/windows/process.rb +3 -3
- data/lib/puppet/util/windows/registry.rb +36 -0
- data/lib/puppet/util/windows/security.rb +46 -9
- data/lib/puppet/util/windows/user.rb +2 -65
- data/lib/puppet/util/zaml.rb +47 -91
- data/lib/puppet/version.rb +1 -1
- data/man/man5/puppet.conf.5 +97 -69
- data/man/man8/puppet-agent.8 +5 -6
- data/man/man8/puppet-apply.8 +7 -3
- data/man/man8/puppet-ca.8 +5 -17
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-cert.8 +1 -1
- data/man/man8/puppet-certificate.8 +3 -9
- data/man/man8/puppet-certificate_request.8 +1 -1
- data/man/man8/puppet-certificate_revocation_list.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +7 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-file.8 +1 -1
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-help.8 +2 -5
- data/man/man8/puppet-inspect.8 +1 -1
- data/man/man8/puppet-instrumentation_data.8 +1 -1
- data/man/man8/puppet-instrumentation_listener.8 +1 -1
- data/man/man8/puppet-instrumentation_probe.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-kick.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-master.8 +1 -1
- data/man/man8/puppet-module.8 +19 -50
- data/man/man8/puppet-node.8 +2 -5
- data/man/man8/puppet-parser.8 +7 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-queue.8 +1 -1
- data/man/man8/puppet-report.8 +2 -3
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-resource_type.8 +1 -1
- data/man/man8/puppet-secret_agent.8 +1 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +1 -1
- data/spec/fixtures/unit/indirector/hiera/global.yaml +10 -0
- data/{test/data/providers/cron/crontab_sample_records.yaml → spec/fixtures/unit/provider/cron/crontab/single_line.yaml} +0 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris10 +1 -1
- data/spec/fixtures/unit/provider/package/pkg/{dummy_solaris11 → dummy_solaris11.ifo.installed} +0 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.ifo.known +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.installed +1 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11.known +1 -0
- data/spec/fixtures/unit/provider/package/pkg/publisher +2 -2
- data/spec/fixtures/unit/provider/package/pkg/simple +2 -4
- data/spec/fixtures/unit/provider/package/pkg/solaris11 +2 -12
- data/spec/fixtures/unit/provider/package/sun/dummy.server +12 -0
- data/spec/fixtures/unit/provider/package/sun/simple +24 -0
- data/spec/fixtures/unit/provider/service/smf/svcs.out +3 -0
- data/{test/data/types/sshkey/1 → spec/fixtures/unit/provider/sshkey/parsed/sample} +0 -0
- data/spec/fixtures/unit/provider/zfs/zfs/zfs-list.out +2 -0
- data/spec/fixtures/unit/provider/zpool/zpool/zpool-list.out +2 -0
- data/spec/integration/application/apply_spec.rb +1 -1
- data/spec/integration/application/doc_spec.rb +3 -2
- data/spec/integration/configurer_spec.rb +1 -1
- data/spec/integration/defaults_spec.rb +21 -51
- data/spec/{unit/face → integration/faces}/ca_spec.rb +89 -130
- data/spec/integration/faces/documentation_spec.rb +36 -29
- data/spec/integration/file_serving/content_spec.rb +1 -2
- data/spec/integration/file_serving/fileset_spec.rb +1 -1
- data/spec/integration/file_serving/metadata_spec.rb +1 -2
- data/spec/integration/file_serving/terminus_helper_spec.rb +1 -1
- data/spec/integration/indirector/catalog/compiler_spec.rb +1 -2
- data/spec/integration/indirector/catalog/queue_spec.rb +3 -3
- data/spec/integration/indirector/direct_file_server_spec.rb +14 -10
- data/spec/integration/indirector/facts/facter_spec.rb +22 -0
- data/spec/integration/indirector/file_content/file_server_spec.rb +1 -1
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +1 -1
- data/spec/integration/indirector/node/ldap_spec.rb +1 -1
- data/spec/integration/network/authconfig_spec.rb +238 -0
- data/spec/integration/network/formats_spec.rb +2 -4
- data/spec/integration/network/server/mongrel_spec.rb +2 -10
- data/spec/integration/network/server/webrick_spec.rb +1 -1
- data/spec/integration/node/environment_spec.rb +1 -1
- data/spec/integration/node/facts_spec.rb +2 -2
- data/spec/integration/node_spec.rb +2 -15
- data/spec/integration/parser/collector_spec.rb +2 -2
- data/spec/integration/parser/compiler_spec.rb +38 -10
- data/spec/integration/parser/functions/require_spec.rb +1 -1
- data/spec/integration/parser/functions_spec.rb +1 -1
- data/spec/integration/parser/parser_spec.rb +1 -1
- data/spec/integration/parser/ruby_manifest_spec.rb +1 -1
- data/spec/integration/parser/scope_spec.rb +608 -0
- data/spec/integration/provider/mailalias/aliases_spec.rb +1 -1
- data/spec/integration/provider/mount_spec.rb +1 -0
- data/spec/integration/provider/package_spec.rb +3 -3
- data/spec/integration/provider/service/init_spec.rb +2 -2
- data/spec/integration/provider/ssh_authorized_key_spec.rb +1 -1
- data/spec/integration/reference/providers_spec.rb +1 -1
- data/spec/integration/reports_spec.rb +1 -1
- data/spec/integration/resource/catalog_spec.rb +1 -2
- data/spec/integration/resource/type_collection_spec.rb +1 -1
- data/spec/integration/ssl/certificate_authority_spec.rb +1 -1
- data/spec/integration/ssl/certificate_request_spec.rb +1 -1
- data/spec/integration/ssl/certificate_revocation_list_spec.rb +1 -1
- data/spec/integration/ssl/host_spec.rb +1 -1
- data/spec/integration/transaction/report_spec.rb +1 -1
- data/spec/integration/transaction_spec.rb +2 -2
- data/spec/integration/type/exec_spec.rb +1 -1
- data/spec/integration/type/file_spec.rb +140 -158
- data/spec/integration/type/package_spec.rb +6 -2
- data/spec/integration/type/tidy_spec.rb +1 -1
- data/spec/integration/type_spec.rb +1 -1
- data/spec/integration/util/autoload_spec.rb +8 -14
- data/spec/integration/util/feature_spec.rb +1 -1
- data/spec/integration/util/rdoc/parser_spec.rb +11 -9
- data/spec/integration/util/settings_spec.rb +19 -6
- data/spec/integration/util/windows/security_spec.rb +23 -3
- data/spec/integration/util_spec.rb +3 -3
- data/spec/lib/puppet/indirector/indirector_testing/json.rb +6 -0
- data/spec/lib/puppet/indirector_testing.rb +27 -0
- data/spec/lib/puppet_spec/compiler.rb +2 -2
- data/spec/lib/puppet_spec/database.rb +1 -1
- data/spec/lib/puppet_spec/files.rb +4 -4
- data/spec/lib/puppet_spec/matchers.rb +26 -24
- data/spec/lib/puppet_spec/modules.rb +1 -1
- data/spec/lib/puppet_spec/settings.rb +16 -0
- data/spec/shared_behaviours/file_server_terminus.rb +2 -2
- data/spec/shared_behaviours/file_serving.rb +10 -15
- data/spec/shared_behaviours/file_serving_model.rb +2 -6
- data/spec/shared_contexts/platform.rb +0 -8
- data/spec/spec_helper.rb +14 -15
- data/spec/unit/agent/disabler_spec.rb +64 -0
- data/spec/unit/agent/locker_spec.rb +31 -36
- data/spec/unit/agent_spec.rb +79 -26
- data/spec/unit/application/agent_spec.rb +66 -39
- data/spec/unit/application/apply_spec.rb +46 -36
- data/spec/unit/application/cert_spec.rb +1 -5
- data/spec/unit/application/certificate_spec.rb +1 -1
- data/spec/unit/application/config_spec.rb +1 -1
- data/spec/unit/application/describe_spec.rb +1 -5
- data/spec/unit/application/device_spec.rb +22 -12
- data/spec/unit/application/doc_spec.rb +37 -69
- data/spec/unit/application/face_base_spec.rb +10 -6
- data/spec/unit/application/facts_spec.rb +3 -3
- data/spec/unit/application/filebucket_spec.rb +7 -18
- data/spec/unit/application/indirection_base_spec.rb +11 -5
- data/spec/unit/application/inspect_spec.rb +3 -2
- data/spec/unit/application/kick_spec.rb +6 -22
- data/spec/unit/application/master_spec.rb +15 -39
- data/spec/unit/application/queue_spec.rb +2 -6
- data/spec/unit/application/resource_spec.rb +15 -12
- data/spec/unit/application/secret_agent_spec.rb +1 -1
- data/spec/unit/application_spec.rb +110 -123
- data/spec/unit/configurer/downloader_spec.rb +5 -5
- data/spec/unit/configurer/fact_handler_spec.rb +1 -40
- data/spec/unit/configurer/plugin_handler_spec.rb +11 -96
- data/spec/unit/configurer_spec.rb +61 -59
- data/spec/unit/daemon_spec.rb +26 -19
- data/spec/unit/data_binding_spec.rb +11 -0
- data/spec/unit/dsl/resource_api_spec.rb +2 -2
- data/spec/unit/dsl/resource_type_api_spec.rb +1 -1
- data/spec/unit/face/catalog_spec.rb +1 -1
- data/spec/unit/face/certificate_request_spec.rb +1 -1
- data/spec/unit/face/certificate_revocation_list_spec.rb +1 -1
- data/spec/unit/face/certificate_spec.rb +18 -1
- data/spec/unit/face/config_spec.rb +8 -1
- data/spec/unit/face/facts_spec.rb +1 -1
- data/spec/unit/face/file_spec.rb +1 -1
- data/spec/unit/face/help_spec.rb +39 -22
- data/spec/unit/face/instrumentation_data_spec.rb +1 -1
- data/spec/unit/face/instrumentation_listener_spec.rb +1 -1
- data/spec/unit/face/instrumentation_probe_spec.rb +1 -1
- data/spec/unit/face/key_spec.rb +1 -1
- data/spec/unit/face/module/build_spec.rb +68 -0
- data/spec/unit/face/module/install_spec.rb +46 -31
- data/spec/unit/face/module/list_spec.rb +18 -21
- data/spec/unit/face/module/search_spec.rb +87 -49
- data/spec/unit/face/module/uninstall_spec.rb +4 -4
- data/spec/unit/face/node_spec.rb +3 -3
- data/spec/unit/face/plugin_spec.rb +1 -1
- data/spec/unit/face/report_spec.rb +1 -1
- data/spec/unit/face/resource_spec.rb +1 -1
- data/spec/unit/face/resource_type_spec.rb +1 -1
- data/spec/unit/face/secret_agent_spec.rb +1 -1
- data/spec/unit/file_bucket/dipper_spec.rb +1 -1
- data/spec/unit/file_bucket/file_spec.rb +1 -1
- data/spec/unit/file_serving/base_spec.rb +1 -1
- data/spec/unit/file_serving/configuration/parser_spec.rb +1 -1
- data/spec/unit/file_serving/configuration_spec.rb +7 -21
- data/spec/unit/file_serving/content_spec.rb +1 -1
- data/spec/unit/file_serving/fileset_spec.rb +13 -13
- data/spec/unit/file_serving/metadata_spec.rb +29 -47
- data/spec/unit/file_serving/mount/file_spec.rb +1 -1
- data/spec/unit/file_serving/mount/modules_spec.rb +1 -1
- data/spec/unit/file_serving/mount/plugins_spec.rb +17 -4
- data/spec/unit/file_serving/mount_spec.rb +1 -1
- data/spec/unit/file_serving/terminus_helper_spec.rb +1 -1
- data/spec/unit/file_serving/terminus_selector_spec.rb +5 -5
- data/spec/unit/forge/errors_spec.rb +42 -0
- data/spec/unit/forge/repository_spec.rb +108 -31
- data/spec/unit/forge_spec.rb +17 -23
- data/spec/unit/indirector/active_record_spec.rb +1 -1
- data/spec/unit/indirector/catalog/active_record_spec.rb +11 -49
- data/spec/unit/indirector/catalog/compiler_spec.rb +18 -45
- data/spec/unit/indirector/catalog/json_spec.rb +12 -0
- data/spec/unit/indirector/catalog/queue_spec.rb +1 -1
- data/spec/unit/indirector/catalog/rest_spec.rb +1 -1
- data/spec/unit/indirector/catalog/store_configs_spec.rb +1 -1
- data/spec/unit/indirector/catalog/yaml_spec.rb +1 -1
- data/spec/unit/indirector/certificate/ca_spec.rb +5 -6
- data/spec/unit/indirector/certificate/file_spec.rb +5 -6
- data/spec/unit/indirector/certificate/rest_spec.rb +6 -2
- data/spec/unit/indirector/certificate_request/ca_spec.rb +3 -3
- data/spec/unit/indirector/certificate_request/file_spec.rb +3 -3
- data/spec/unit/indirector/certificate_request/rest_spec.rb +1 -1
- data/spec/unit/indirector/certificate_revocation_list/ca_spec.rb +3 -4
- data/spec/unit/indirector/certificate_revocation_list/file_spec.rb +4 -3
- data/spec/unit/indirector/certificate_revocation_list/rest_spec.rb +1 -1
- data/spec/unit/indirector/certificate_status/file_spec.rb +41 -31
- data/spec/unit/indirector/certificate_status/rest_spec.rb +1 -1
- data/spec/unit/indirector/code_spec.rb +1 -1
- data/spec/unit/indirector/data_binding/hiera_spec.rb +21 -0
- data/spec/unit/indirector/data_binding/none_spec.rb +28 -0
- data/spec/unit/indirector/direct_file_server_spec.rb +2 -2
- data/spec/unit/indirector/envelope_spec.rb +1 -1
- data/spec/unit/indirector/exec_spec.rb +1 -1
- data/spec/unit/indirector/face_spec.rb +1 -1
- data/spec/unit/indirector/facts/active_record_spec.rb +1 -1
- data/spec/unit/indirector/facts/couch_spec.rb +3 -3
- data/spec/unit/indirector/facts/facter_spec.rb +13 -20
- data/spec/unit/indirector/facts/inventory_active_record_spec.rb +2 -2
- data/spec/unit/indirector/facts/inventory_service_spec.rb +2 -3
- data/spec/unit/indirector/facts/network_device_spec.rb +2 -9
- data/spec/unit/indirector/facts/rest_spec.rb +1 -1
- data/spec/unit/indirector/facts/store_configs_spec.rb +1 -1
- data/spec/unit/indirector/facts/yaml_spec.rb +2 -2
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +2 -2
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_content/file_server_spec.rb +1 -1
- data/spec/unit/indirector/file_content/file_spec.rb +1 -1
- data/spec/unit/indirector/file_content/rest_spec.rb +7 -3
- data/spec/unit/indirector/file_metadata/file_server_spec.rb +1 -1
- data/spec/unit/indirector/file_metadata/file_spec.rb +3 -3
- data/spec/unit/indirector/file_metadata/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_server_spec.rb +1 -1
- data/spec/unit/indirector/hiera_spec.rb +149 -0
- data/spec/unit/indirector/indirection_spec.rb +10 -29
- data/spec/unit/indirector/instrumentation_data/local_spec.rb +1 -1
- data/spec/unit/indirector/instrumentation_data/rest_spec.rb +1 -1
- data/spec/unit/indirector/instrumentation_listener/local_spec.rb +1 -1
- data/spec/unit/indirector/instrumentation_listener/rest_spec.rb +1 -1
- data/spec/unit/indirector/instrumentation_probe/local_spec.rb +1 -1
- data/spec/unit/indirector/instrumentation_probe/rest_spec.rb +1 -1
- data/spec/unit/indirector/json_spec.rb +193 -0
- data/spec/unit/indirector/key/ca_spec.rb +5 -6
- data/spec/unit/indirector/key/file_spec.rb +10 -12
- data/spec/unit/indirector/ldap_spec.rb +3 -3
- data/spec/unit/indirector/memory_spec.rb +1 -1
- data/spec/unit/indirector/node/active_record_spec.rb +11 -7
- data/spec/unit/indirector/node/exec_spec.rb +12 -5
- data/spec/unit/indirector/node/ldap_spec.rb +173 -194
- data/spec/unit/indirector/node/memory_spec.rb +1 -1
- data/spec/unit/indirector/node/plain_spec.rb +16 -8
- data/spec/unit/indirector/node/rest_spec.rb +1 -1
- data/spec/unit/indirector/node/store_configs_spec.rb +1 -1
- data/spec/unit/indirector/node/yaml_spec.rb +1 -1
- data/spec/unit/indirector/none_spec.rb +33 -0
- data/spec/unit/indirector/plain_spec.rb +1 -1
- data/spec/unit/indirector/queue_spec.rb +1 -1
- data/spec/unit/indirector/report/processor_spec.rb +4 -4
- data/spec/unit/indirector/report/rest_spec.rb +3 -46
- data/spec/unit/indirector/report/yaml_spec.rb +3 -12
- data/spec/unit/indirector/request_spec.rb +238 -61
- data/spec/unit/indirector/resource/active_record_spec.rb +2 -2
- data/spec/unit/indirector/resource/ral_spec.rb +2 -2
- data/spec/unit/indirector/resource/rest_spec.rb +1 -1
- data/spec/unit/indirector/resource/store_configs_spec.rb +1 -1
- data/spec/unit/indirector/resource_type/parser_spec.rb +153 -53
- data/spec/unit/indirector/resource_type/rest_spec.rb +1 -1
- data/spec/unit/indirector/rest_spec.rb +350 -361
- data/spec/unit/indirector/run/local_spec.rb +2 -2
- data/spec/unit/indirector/run/rest_spec.rb +1 -1
- data/spec/unit/indirector/ssl_file_spec.rb +12 -10
- data/spec/unit/indirector/status/rest_spec.rb +1 -1
- data/spec/unit/indirector/store_configs_spec.rb +1 -1
- data/spec/unit/indirector/terminus_spec.rb +1 -46
- data/spec/unit/indirector/yaml_spec.rb +36 -36
- data/spec/unit/indirector_spec.rb +1 -1
- data/spec/unit/interface/action_builder_spec.rb +1 -1
- data/spec/unit/interface/action_manager_spec.rb +1 -1
- data/spec/unit/interface/action_spec.rb +1 -1
- data/spec/unit/interface/documentation_spec.rb +3 -2
- data/spec/unit/interface/face_collection_spec.rb +19 -9
- data/spec/unit/interface/option_builder_spec.rb +9 -1
- data/spec/unit/interface/option_spec.rb +8 -0
- data/spec/unit/interface_spec.rb +49 -11
- data/spec/unit/module_spec.rb +95 -303
- data/spec/unit/module_tool/application_spec.rb +6 -6
- data/spec/unit/module_tool/applications/installer_spec.rb +131 -69
- data/spec/unit/module_tool/applications/searcher_spec.rb +37 -0
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +27 -19
- data/spec/unit/module_tool/applications/unpacker_spec.rb +4 -10
- data/spec/unit/module_tool/applications/upgrader_spec.rb +1 -4
- data/spec/unit/module_tool/install_directory_spec.rb +70 -0
- data/spec/unit/module_tool_spec.rb +132 -1
- data/spec/unit/network/auth_config_parser_spec.rb +101 -0
- data/spec/unit/network/authconfig_spec.rb +54 -272
- data/spec/unit/network/authorization_spec.rb +20 -0
- data/spec/unit/network/authstore_spec.rb +17 -15
- data/spec/unit/network/format_handler_spec.rb +3 -3
- data/spec/unit/network/format_spec.rb +1 -1
- data/spec/unit/network/formats_spec.rb +28 -37
- data/spec/unit/network/http/api/v1_spec.rb +3 -3
- data/spec/unit/network/http/compression_spec.rb +3 -3
- data/spec/unit/network/http/connection_spec.rb +244 -0
- data/spec/unit/network/http/handler_spec.rb +4 -20
- data/spec/unit/network/http/mongrel/rest_spec.rb +12 -31
- data/spec/unit/network/http/mongrel_spec.rb +7 -37
- data/spec/unit/network/http/rack/rest_spec.rb +10 -44
- data/spec/unit/network/http/rack_spec.rb +2 -59
- data/spec/unit/network/http/webrick/rest_spec.rb +14 -4
- data/spec/unit/network/http/webrick_spec.rb +129 -193
- data/spec/unit/network/http_pool_spec.rb +6 -115
- data/spec/unit/network/http_spec.rb +1 -1
- data/spec/unit/network/resolver_spec.rb +207 -0
- data/spec/unit/network/rights_spec.rb +15 -115
- data/spec/unit/network/server_spec.rb +58 -166
- data/spec/unit/node/environment_spec.rb +7 -7
- data/spec/unit/node/facts_spec.rb +15 -30
- data/spec/unit/node_spec.rb +14 -26
- data/spec/unit/other/selinux_spec.rb +1 -1
- data/spec/unit/parameter/package_options_spec.rb +44 -0
- data/spec/unit/parameter/path_spec.rb +1 -1
- data/spec/unit/parameter/value_collection_spec.rb +1 -1
- data/spec/unit/parameter/value_spec.rb +1 -1
- data/spec/unit/parameter_spec.rb +1 -1
- data/spec/unit/parser/ast/arithmetic_operator_spec.rb +4 -2
- data/spec/unit/parser/ast/astarray_spec.rb +4 -2
- data/spec/unit/parser/ast/asthash_spec.rb +4 -2
- data/spec/unit/parser/ast/boolean_operator_spec.rb +4 -2
- data/spec/unit/parser/ast/casestatement_spec.rb +9 -5
- data/spec/unit/parser/ast/collection_spec.rb +2 -2
- data/spec/unit/parser/ast/collexpr_spec.rb +4 -2
- data/spec/unit/parser/ast/comparison_operator_spec.rb +5 -2
- data/spec/unit/parser/ast/definition_spec.rb +1 -1
- data/spec/unit/parser/ast/function_spec.rb +3 -3
- data/spec/unit/parser/ast/hostclass_spec.rb +1 -1
- data/spec/unit/parser/ast/ifstatement_spec.rb +4 -2
- data/spec/unit/parser/ast/in_operator_spec.rb +4 -2
- data/spec/unit/parser/ast/leaf_spec.rb +66 -39
- data/spec/unit/parser/ast/match_operator_spec.rb +4 -2
- data/spec/unit/parser/ast/minus_spec.rb +4 -2
- data/spec/unit/parser/ast/node_spec.rb +1 -1
- data/spec/unit/parser/ast/nop_spec.rb +1 -1
- data/spec/unit/parser/ast/not_spec.rb +4 -2
- data/spec/unit/parser/ast/relationship_spec.rb +2 -2
- data/spec/unit/parser/ast/resource_defaults_spec.rb +2 -2
- data/spec/unit/parser/ast/resource_override_spec.rb +2 -2
- data/spec/unit/parser/ast/resource_reference_spec.rb +5 -3
- data/spec/unit/parser/ast/resource_spec.rb +5 -32
- data/spec/unit/parser/ast/selector_spec.rb +56 -106
- data/spec/unit/parser/ast/vardef_spec.rb +4 -2
- data/spec/unit/parser/ast_spec.rb +22 -51
- data/spec/unit/parser/collector_spec.rb +2 -2
- data/spec/unit/parser/compiler_spec.rb +89 -42
- data/spec/unit/parser/files_spec.rb +81 -10
- data/spec/unit/parser/functions/create_resources_spec.rb +5 -4
- data/spec/unit/parser/functions/defined_spec.rb +2 -2
- data/spec/unit/parser/functions/extlookup_spec.rb +9 -8
- data/spec/unit/parser/functions/fail_spec.rb +28 -0
- data/spec/unit/parser/functions/file_spec.rb +55 -0
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +6 -12
- data/spec/unit/parser/functions/generate_spec.rb +54 -3
- data/spec/unit/parser/functions/include_spec.rb +19 -2
- data/spec/unit/parser/functions/inline_template_spec.rb +9 -20
- data/spec/unit/parser/functions/realize_spec.rb +4 -4
- data/spec/unit/parser/functions/regsubst_spec.rb +4 -2
- data/spec/unit/parser/functions/require_spec.rb +5 -14
- data/spec/unit/parser/functions/search_spec.rb +23 -0
- data/spec/unit/parser/functions/shellquote_spec.rb +31 -38
- data/spec/unit/parser/functions/split_spec.rb +4 -2
- data/spec/unit/parser/functions/sprintf_spec.rb +4 -2
- data/spec/unit/parser/functions/tag_spec.rb +4 -3
- data/spec/unit/parser/functions/template_spec.rb +45 -27
- data/spec/unit/parser/functions/versioncmp_spec.rb +4 -2
- data/spec/unit/parser/functions_spec.rb +14 -22
- data/spec/unit/parser/lexer_spec.rb +10 -134
- data/spec/unit/parser/parser_spec.rb +126 -35
- data/spec/unit/parser/relationship_spec.rb +1 -25
- data/spec/unit/parser/resource_spec.rb +15 -79
- data/spec/unit/parser/scope_spec.rb +175 -602
- data/spec/unit/parser/templatewrapper_spec.rb +8 -25
- data/spec/unit/parser/type_loader_spec.rb +37 -21
- data/spec/unit/property/ensure_spec.rb +1 -1
- data/spec/unit/property/keyvalue_spec.rb +1 -1
- data/spec/unit/property/list_spec.rb +1 -1
- data/spec/unit/property/ordered_list_spec.rb +1 -1
- data/spec/unit/property_spec.rb +1 -1
- data/spec/unit/{puppet/provider → provider}/README.markdown +0 -0
- data/spec/unit/provider/augeas/augeas_spec.rb +88 -1
- data/spec/unit/provider/cisco_spec.rb +1 -1
- data/spec/unit/provider/command_spec.rb +62 -0
- data/spec/unit/provider/confine/exists_spec.rb +8 -1
- data/spec/unit/provider/confine/false_spec.rb +1 -1
- data/spec/unit/provider/confine/feature_spec.rb +1 -1
- data/spec/unit/provider/confine/true_spec.rb +1 -1
- data/spec/unit/provider/confine/variable_spec.rb +1 -1
- data/spec/unit/provider/confine_collection_spec.rb +1 -1
- data/spec/unit/provider/confine_spec.rb +1 -1
- data/spec/unit/provider/confiner_spec.rb +1 -1
- data/spec/unit/provider/cron/crontab_spec.rb +116 -0
- data/spec/unit/provider/exec/posix_spec.rb +99 -12
- data/spec/unit/provider/exec/shell_spec.rb +1 -1
- data/spec/unit/provider/exec/windows_spec.rb +1 -1
- data/spec/unit/provider/exec_spec.rb +1 -1
- data/spec/unit/provider/file/posix_spec.rb +1 -1
- data/spec/unit/provider/file/windows_spec.rb +30 -30
- data/spec/unit/provider/group/groupadd_spec.rb +31 -37
- data/spec/unit/provider/group/ldap_spec.rb +1 -1
- data/spec/unit/provider/group/pw_spec.rb +1 -1
- data/spec/unit/provider/group/windows_adsi_spec.rb +2 -2
- data/spec/unit/provider/host/parsed_spec.rb +1 -1
- data/spec/unit/provider/interface/cisco_spec.rb +1 -1
- data/spec/unit/provider/ldap_spec.rb +1 -1
- data/spec/unit/provider/macauthorization_spec.rb +1 -1
- data/spec/unit/provider/mcx/mcxcontent_spec.rb +1 -1
- data/spec/unit/provider/mount/parsed_spec.rb +18 -12
- data/spec/unit/provider/mount_spec.rb +1 -1
- data/spec/unit/provider/naginator_spec.rb +1 -1
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +9 -29
- data/spec/unit/provider/network_device_spec.rb +1 -1
- data/spec/unit/provider/package/aix_spec.rb +1 -1
- data/spec/unit/provider/package/appdmg_spec.rb +1 -1
- data/spec/unit/provider/package/apt_spec.rb +1 -1
- data/spec/unit/provider/package/aptitude_spec.rb +38 -0
- data/spec/unit/provider/package/aptrpm_spec.rb +39 -0
- data/spec/unit/provider/package/dpkg_spec.rb +4 -4
- data/spec/unit/provider/package/freebsd_spec.rb +3 -3
- data/spec/unit/provider/package/gem_spec.rb +1 -1
- data/spec/unit/provider/package/hpux_spec.rb +1 -1
- data/spec/unit/provider/package/macports_spec.rb +27 -10
- data/spec/unit/provider/package/msi_spec.rb +29 -14
- data/spec/unit/provider/package/nim_spec.rb +1 -1
- data/spec/unit/provider/package/openbsd_spec.rb +3 -3
- data/spec/unit/provider/package/pacman_spec.rb +109 -81
- data/spec/unit/provider/package/pip_spec.rb +1 -1
- data/spec/unit/provider/package/pkg_spec.rb +205 -97
- data/spec/unit/provider/package/pkgdmg_spec.rb +1 -1
- data/spec/unit/provider/package/pkgin_spec.rb +176 -0
- data/spec/unit/provider/package/pkgutil_spec.rb +64 -10
- data/spec/unit/provider/package/rpm_spec.rb +58 -0
- data/spec/unit/provider/package/sun_spec.rb +122 -0
- data/spec/unit/provider/package/up2date_spec.rb +24 -0
- data/spec/unit/provider/package/windows/exe_package_spec.rb +99 -0
- data/spec/unit/provider/package/windows/msi_package_spec.rb +115 -0
- data/spec/unit/provider/package/windows/package_spec.rb +126 -0
- data/spec/unit/provider/package/windows_spec.rb +255 -0
- data/spec/unit/provider/package/yum_spec.rb +1 -1
- data/spec/unit/provider/package/zypper_spec.rb +1 -1
- data/spec/unit/provider/parsedfile_spec.rb +1 -1
- data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +12 -15
- data/spec/unit/provider/selboolean_spec.rb +1 -1
- data/spec/unit/provider/selmodule-example.pp +0 -0
- data/spec/unit/provider/selmodule_spec.rb +1 -1
- data/spec/unit/provider/service/base_spec.rb +77 -0
- data/spec/unit/provider/service/daemontools_spec.rb +1 -1
- data/spec/unit/provider/service/debian_spec.rb +1 -1
- data/spec/unit/provider/service/freebsd_spec.rb +1 -1
- data/spec/unit/provider/service/gentoo_spec.rb +1 -1
- data/spec/unit/provider/service/init_spec.rb +1 -1
- data/spec/unit/provider/service/launchd_spec.rb +0 -17
- data/spec/unit/provider/service/redhat_spec.rb +12 -3
- data/spec/unit/provider/service/runit_spec.rb +2 -1
- data/spec/unit/provider/service/smf_spec.rb +16 -1
- data/spec/unit/provider/service/src_spec.rb +6 -6
- data/spec/unit/provider/service/systemd_spec.rb +18 -1
- data/spec/unit/provider/service/upstart_spec.rb +12 -7
- data/spec/unit/provider/service/windows_spec.rb +1 -1
- data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +1 -1
- data/spec/unit/provider/sshkey/parsed_spec.rb +42 -12
- data/spec/unit/provider/user/hpux_spec.rb +1 -1
- data/spec/unit/provider/user/ldap_spec.rb +9 -23
- data/spec/unit/provider/user/pw_spec.rb +1 -1
- data/spec/unit/provider/user/user_role_add_spec.rb +5 -2
- data/spec/unit/provider/user/useradd_spec.rb +118 -146
- data/spec/unit/provider/user/windows_adsi_spec.rb +2 -24
- data/spec/unit/provider/vlan/cisco_spec.rb +1 -1
- data/spec/unit/provider/zfs/zfs_spec.rb +106 -0
- data/spec/unit/provider/zone/solaris_spec.rb +56 -34
- data/spec/unit/provider/zpool/zpool_spec.rb +213 -0
- data/spec/unit/provider_spec.rb +621 -16
- data/spec/unit/puppet_spec.rb +21 -9
- data/spec/unit/rails/host_spec.rb +1 -1
- data/spec/unit/rails/param_value_spec.rb +1 -1
- data/spec/unit/rails/resource_spec.rb +1 -1
- data/spec/unit/rails_spec.rb +70 -70
- data/spec/unit/relationship_spec.rb +1 -1
- data/spec/unit/reports/http_spec.rb +48 -15
- data/spec/unit/reports/rrdgraph_spec.rb +1 -1
- data/spec/unit/reports/store_spec.rb +1 -1
- data/spec/unit/reports/tagmail_spec.rb +1 -1
- data/spec/unit/reports_spec.rb +1 -1
- data/spec/unit/resource/catalog_spec.rb +8 -175
- data/spec/unit/resource/status_spec.rb +2 -2
- data/spec/unit/resource/type_collection_helper_spec.rb +1 -1
- data/spec/unit/resource/type_collection_spec.rb +72 -45
- data/spec/unit/resource/type_spec.rb +31 -33
- data/spec/unit/resource_spec.rb +163 -98
- data/spec/unit/run_spec.rb +7 -23
- data/spec/unit/settings/directory_setting_spec.rb +32 -0
- data/spec/unit/{util/settings → settings}/file_setting_spec.rb +14 -23
- data/spec/unit/settings/path_setting_spec.rb +30 -0
- data/spec/unit/settings/string_setting_spec.rb +75 -0
- data/spec/unit/settings_spec.rb +1583 -0
- data/spec/unit/simple_graph_spec.rb +19 -5
- data/spec/unit/ssl/base_spec.rb +2 -2
- data/spec/unit/ssl/certificate_authority/interface_spec.rb +7 -7
- data/spec/unit/ssl/certificate_authority_spec.rb +27 -53
- data/spec/unit/ssl/certificate_factory_spec.rb +1 -1
- data/spec/unit/ssl/certificate_request_spec.rb +2 -4
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +3 -3
- data/spec/unit/ssl/certificate_spec.rb +1 -1
- data/spec/unit/ssl/configuration_spec.rb +60 -0
- data/spec/unit/ssl/host_spec.rb +37 -89
- data/spec/unit/ssl/inventory_spec.rb +13 -20
- data/spec/unit/ssl/key_spec.rb +11 -9
- data/spec/unit/status_spec.rb +1 -7
- data/spec/unit/transaction/event_manager_spec.rb +1 -1
- data/spec/unit/transaction/event_spec.rb +6 -6
- data/spec/unit/transaction/report_spec.rb +1 -1
- data/spec/unit/transaction/resource_harness_spec.rb +2 -2
- data/spec/unit/transaction_spec.rb +8 -8
- data/spec/unit/{puppet/type → type}/README.markdown +0 -0
- data/spec/unit/type/augeas_spec.rb +2 -2
- data/spec/unit/type/component_spec.rb +1 -1
- data/spec/unit/type/computer_spec.rb +1 -1
- data/spec/unit/type/cron_spec.rb +1 -1
- data/spec/unit/type/exec_spec.rb +40 -12
- data/spec/unit/type/file/checksum_spec.rb +1 -1
- data/spec/unit/type/file/content_spec.rb +9 -6
- data/spec/unit/type/file/ctime_spec.rb +1 -1
- data/spec/unit/type/file/ensure_spec.rb +1 -1
- data/spec/unit/type/file/group_spec.rb +1 -1
- data/spec/unit/type/file/mode_spec.rb +1 -1
- data/spec/unit/type/file/mtime_spec.rb +1 -1
- data/spec/unit/type/file/owner_spec.rb +1 -1
- data/spec/unit/type/file/selinux_spec.rb +1 -1
- data/spec/unit/type/file/source_spec.rb +14 -13
- data/spec/unit/type/file/type_spec.rb +1 -1
- data/spec/unit/type/file_spec.rb +39 -87
- data/spec/unit/type/filebucket_spec.rb +1 -1
- data/spec/unit/type/group_spec.rb +5 -5
- data/spec/unit/type/host_spec.rb +1 -1
- data/spec/unit/type/interface_spec.rb +1 -1
- data/spec/unit/type/macauthorization_spec.rb +1 -1
- data/spec/unit/type/mailalias_spec.rb +21 -0
- data/spec/unit/type/maillist_spec.rb +1 -1
- data/spec/unit/type/mcx_spec.rb +1 -1
- data/spec/unit/type/mount_spec.rb +2 -2
- data/spec/unit/type/nagios_spec.rb +1 -1
- data/spec/unit/type/noop_metaparam_spec.rb +3 -3
- data/spec/unit/type/package_spec.rb +1 -1
- data/spec/unit/type/resources_spec.rb +2 -2
- data/spec/unit/type/schedule_spec.rb +297 -39
- data/spec/unit/type/scheduled_task_spec.rb +3 -3
- data/spec/unit/type/selboolean_spec.rb +1 -1
- data/spec/unit/type/selmodule_spec.rb +1 -1
- data/spec/unit/type/service_spec.rb +1 -1
- data/spec/unit/type/ssh_authorized_key_spec.rb +3 -3
- data/spec/unit/type/sshkey_spec.rb +1 -1
- data/spec/unit/type/stage_spec.rb +1 -1
- data/spec/unit/type/tidy_spec.rb +1 -1
- data/spec/unit/type/user_spec.rb +1 -1
- data/spec/unit/type/vlan_spec.rb +1 -1
- data/spec/unit/type/whit_spec.rb +1 -1
- data/spec/unit/type/yumrepo_spec.rb +243 -0
- data/spec/unit/type/zfs_spec.rb +8 -6
- data/spec/unit/type/zone_spec.rb +41 -36
- data/spec/unit/type/zpool_spec.rb +1 -1
- data/spec/unit/type_spec.rb +180 -31
- data/spec/unit/util/adsi_spec.rb +8 -23
- data/spec/unit/util/autoload_spec.rb +181 -45
- data/spec/unit/util/backups_spec.rb +1 -1
- data/spec/unit/util/cache_accumulator_spec.rb +1 -1
- data/spec/unit/util/cacher_spec.rb +1 -1
- data/spec/unit/util/checksums_spec.rb +1 -1
- data/spec/unit/util/command_line_spec.rb +114 -108
- data/spec/unit/util/command_line_utils/puppet_option_parser_spec.rb +129 -0
- data/spec/unit/util/config_timeout_spec.rb +57 -0
- data/spec/unit/util/constant_inflector_spec.rb +13 -23
- data/spec/unit/util/diff_spec.rb +5 -4
- data/spec/unit/util/errors_spec.rb +1 -1
- data/spec/unit/util/execution_spec.rb +532 -28
- data/spec/unit/util/execution_stub_spec.rb +4 -4
- data/spec/unit/util/feature_spec.rb +12 -13
- data/spec/unit/util/filetype_spec.rb +9 -9
- data/spec/unit/util/inline_docs_spec.rb +1 -1
- data/spec/unit/util/instrumentation/data_spec.rb +1 -1
- data/spec/unit/util/instrumentation/indirection_probe_spec.rb +1 -1
- data/spec/unit/util/instrumentation/instrumentable_spec.rb +1 -1
- data/spec/unit/util/instrumentation/listener_spec.rb +1 -1
- data/spec/unit/util/instrumentation_spec.rb +1 -1
- data/spec/unit/util/json_lockfile_spec.rb +29 -0
- data/spec/unit/util/ldap/connection_spec.rb +11 -15
- data/spec/unit/util/ldap/generator_spec.rb +1 -1
- data/spec/unit/util/ldap/manager_spec.rb +14 -23
- data/spec/unit/util/loadedfile_spec.rb +1 -1
- data/spec/unit/util/lockfile_spec.rb +76 -0
- data/spec/unit/util/log/destinations_spec.rb +11 -28
- data/spec/unit/util/log_spec.rb +6 -6
- data/spec/unit/util/logging_spec.rb +43 -11
- data/spec/unit/util/metric_spec.rb +4 -3
- data/spec/unit/util/monkey_patches/lines_spec.rb +83 -0
- data/spec/unit/util/monkey_patches_spec.rb +91 -28
- data/spec/unit/util/nagios_maker_spec.rb +1 -1
- data/spec/unit/util/network_device/cisco/device_spec.rb +3 -3
- data/spec/unit/util/network_device/cisco/facts_spec.rb +1 -1
- data/spec/unit/util/network_device/cisco/interface_spec.rb +1 -1
- data/spec/unit/util/network_device/config_spec.rb +1 -1
- data/spec/unit/util/network_device/ipcalc_spec.rb +1 -1
- data/spec/unit/util/network_device/transport/base_spec.rb +1 -1
- data/spec/unit/util/network_device/transport/ssh_spec.rb +2 -2
- data/spec/unit/util/network_device/transport/telnet_spec.rb +1 -1
- data/spec/unit/util/network_device_spec.rb +1 -1
- data/spec/unit/util/package_spec.rb +1 -1
- data/spec/unit/util/pidlock_spec.rb +179 -0
- data/spec/unit/util/posix_spec.rb +2 -2
- data/spec/unit/util/pson_spec.rb +23 -9
- data/spec/unit/util/queue/stomp_spec.rb +10 -13
- data/spec/unit/util/queue_spec.rb +2 -2
- data/spec/unit/util/rdoc/parser_spec.rb +11 -9
- data/spec/unit/util/rdoc_spec.rb +9 -3
- data/spec/unit/util/reference_serializer_spec.rb +1 -1
- data/spec/unit/util/reference_spec.rb +1 -1
- data/spec/unit/util/resource_template_spec.rb +1 -1
- data/spec/unit/util/retryaction_spec.rb +1 -1
- data/spec/unit/util/rubygems_spec.rb +66 -0
- data/spec/unit/util/run_mode_spec.rb +4 -9
- data/spec/unit/util/selinux_spec.rb +33 -25
- data/spec/unit/util/storage_spec.rb +2 -18
- data/spec/unit/util/suidmanager_spec.rb +11 -4
- data/spec/unit/util/symbolic_file_mode_spec.rb +1 -1
- data/spec/unit/util/tagging_spec.rb +1 -1
- data/spec/unit/util/terminal_spec.rb +1 -1
- data/spec/unit/util/user_attr_spec.rb +1 -1
- data/spec/unit/util/warnings_spec.rb +1 -1
- data/spec/unit/util/windows/registry_spec.rb +86 -0
- data/spec/unit/util/zaml_spec.rb +30 -146
- data/spec/unit/util_spec.rb +148 -440
- data/spec/watchr.rb +6 -2
- data/tasks/rake/apple.rake +176 -0
- data/tasks/rake/gem.rake +6 -5
- data/tasks/rake/manpages.rake +8 -1
- data/tasks/rake/metrics.rake +11 -3
- data/tasks/rake/parser.rake +5 -0
- data/{ext/osx → tasks/rake/templates}/prototype.plist.erb +0 -0
- metadata +293 -580
- data/bin/filebucket +0 -7
- data/bin/pi +0 -5
- data/bin/puppetca +0 -4
- data/bin/puppetd +0 -4
- data/bin/puppetdoc +0 -4
- data/bin/puppetmasterd +0 -4
- data/bin/puppetqd +0 -4
- data/bin/puppetrun +0 -5
- data/bin/ralsh +0 -4
- data/ext/build_defaults.yaml +0 -19
- data/ext/debian/README.Debian +0 -8
- data/ext/debian/README.source +0 -2
- data/ext/debian/TODO.Debian +0 -1
- data/ext/debian/changelog.erb +0 -1104
- data/ext/debian/compat +0 -1
- data/ext/debian/control +0 -142
- data/ext/debian/copyright +0 -361
- data/ext/debian/docs +0 -1
- data/ext/debian/fileserver.conf +0 -17
- data/ext/debian/puppet-common.dirs +0 -8
- data/ext/debian/puppet-common.install +0 -3
- data/ext/debian/puppet-common.lintian-overrides +0 -7
- data/ext/debian/puppet-common.manpages +0 -2
- data/ext/debian/puppet-common.postinst +0 -35
- data/ext/debian/puppet-common.postrm +0 -32
- data/ext/debian/puppet-el.dirs +0 -1
- data/ext/debian/puppet-el.emacsen-install +0 -25
- data/ext/debian/puppet-el.emacsen-remove +0 -11
- data/ext/debian/puppet-el.emacsen-startup +0 -9
- data/ext/debian/puppet-el.install +0 -1
- data/ext/debian/puppet-testsuite.install +0 -3
- data/ext/debian/puppet-testsuite.lintian-overrides +0 -4
- data/ext/debian/puppet.NEWS +0 -86
- data/ext/debian/puppet.conf +0 -14
- data/ext/debian/puppet.default +0 -7
- data/ext/debian/puppet.dirs +0 -1
- data/ext/debian/puppet.init +0 -118
- data/ext/debian/puppet.install +0 -4
- data/ext/debian/puppet.lintian-overrides +0 -3
- data/ext/debian/puppet.logrotate +0 -11
- data/ext/debian/puppet.manpages +0 -36
- data/ext/debian/puppet.postinst +0 -20
- data/ext/debian/puppet.postrm +0 -20
- data/ext/debian/puppet.preinst +0 -20
- data/ext/debian/puppetmaster-common.install +0 -5
- data/ext/debian/puppetmaster-common.manpages +0 -5
- data/ext/debian/puppetmaster-common.puppetqd.default +0 -27
- data/ext/debian/puppetmaster-common.puppetqd.init +0 -84
- data/ext/debian/puppetmaster-passenger.dirs +0 -4
- data/ext/debian/puppetmaster-passenger.postinst +0 -66
- data/ext/debian/puppetmaster-passenger.postrm +0 -33
- data/ext/debian/puppetmaster.NEWS +0 -13
- data/ext/debian/puppetmaster.README.debian +0 -16
- data/ext/debian/puppetmaster.default +0 -38
- data/ext/debian/puppetmaster.dirs +0 -1
- data/ext/debian/puppetmaster.init +0 -158
- data/ext/debian/puppetmaster.install +0 -1
- data/ext/debian/puppetmaster.lintian-overrides +0 -3
- data/ext/debian/puppetmaster.manpages +0 -1
- data/ext/debian/puppetmaster.postinst +0 -20
- data/ext/debian/puppetmaster.postrm +0 -5
- data/ext/debian/puppetmaster.preinst +0 -22
- data/ext/debian/rules +0 -127
- data/ext/debian/source/format +0 -1
- data/ext/debian/source/options +0 -1
- data/ext/debian/vim-puppet.README.Debian +0 -13
- data/ext/debian/vim-puppet.dirs +0 -3
- data/ext/debian/vim-puppet.yaml +0 -5
- data/ext/debian/watch +0 -2
- data/ext/osx/file_mapping.yaml +0 -38
- data/ext/osx/preflight.erb +0 -37
- data/ext/packaging/Gemfile +0 -8
- data/ext/packaging/Gemfile.lock +0 -28
- data/ext/packaging/LICENSE +0 -17
- data/ext/packaging/README-Solaris.md +0 -117
- data/ext/packaging/README.md +0 -1074
- data/ext/packaging/lib/packaging.rb +0 -21
- data/ext/packaging/lib/packaging/config.rb +0 -277
- data/ext/packaging/lib/packaging/config/params.rb +0 -175
- data/ext/packaging/lib/packaging/tar.rb +0 -186
- data/ext/packaging/lib/packaging/util.rb +0 -44
- data/ext/packaging/lib/packaging/util/date.rb +0 -15
- data/ext/packaging/lib/packaging/util/file.rb +0 -60
- data/ext/packaging/lib/packaging/util/jira.rb +0 -83
- data/ext/packaging/lib/packaging/util/net.rb +0 -16
- data/ext/packaging/lib/packaging/util/rake_utils.rb +0 -57
- data/ext/packaging/lib/packaging/util/serialization.rb +0 -19
- data/ext/packaging/lib/packaging/util/tool.rb +0 -30
- data/ext/packaging/lib/packaging/util/version.rb +0 -300
- data/ext/packaging/packaging.rake +0 -50
- data/ext/packaging/spec/fixtures/config/ext/build_defaults.yaml +0 -2
- data/ext/packaging/spec/fixtures/config/ext/project_data.yaml +0 -2
- data/ext/packaging/spec/fixtures/config/params.yaml +0 -2
- data/ext/packaging/spec/fixtures/util/pre_tasks.yaml +0 -4
- data/ext/packaging/spec/lib/packaging/config_spec.rb +0 -330
- data/ext/packaging/spec/lib/packaging/tar_spec.rb +0 -122
- data/ext/packaging/spec/lib/packaging/util/file_spec.rb +0 -48
- data/ext/packaging/spec/lib/packaging/util/jira_spec.rb +0 -50
- data/ext/packaging/spec/lib/packaging/util/net_spec.rb +0 -23
- data/ext/packaging/spec/lib/packaging/util/rake_utils_spec.rb +0 -70
- data/ext/packaging/spec/lib/packaging/util/version_spec.rb +0 -67
- data/ext/packaging/spec/lib/packaging_spec.rb +0 -19
- data/ext/packaging/spec/spec_helper.rb +0 -22
- data/ext/packaging/spec/tasks/00_utils_spec.rb +0 -248
- data/ext/packaging/static_artifacts/PackageInfo.plist +0 -3
- data/ext/packaging/tasks/00_utils.rake +0 -402
- data/ext/packaging/tasks/30_metrics.rake +0 -33
- data/ext/packaging/tasks/apple.rake +0 -267
- data/ext/packaging/tasks/build.rake +0 -12
- data/ext/packaging/tasks/clean.rake +0 -5
- data/ext/packaging/tasks/deb.rake +0 -127
- data/ext/packaging/tasks/deb_repos.rake +0 -128
- data/ext/packaging/tasks/doc.rake +0 -20
- data/ext/packaging/tasks/fetch.rake +0 -58
- data/ext/packaging/tasks/gem.rake +0 -158
- data/ext/packaging/tasks/ips.rake +0 -122
- data/ext/packaging/tasks/jenkins.rake +0 -360
- data/ext/packaging/tasks/jenkins_dynamic.rake +0 -123
- data/ext/packaging/tasks/load_extras.rake +0 -21
- data/ext/packaging/tasks/mock.rake +0 -290
- data/ext/packaging/tasks/pe_deb.rake +0 -12
- data/ext/packaging/tasks/pe_remote.rake +0 -41
- data/ext/packaging/tasks/pe_rpm.rake +0 -13
- data/ext/packaging/tasks/pe_ship.rake +0 -179
- data/ext/packaging/tasks/pe_sign.rake +0 -47
- data/ext/packaging/tasks/pe_tar.rake +0 -5
- data/ext/packaging/tasks/release.rake +0 -91
- data/ext/packaging/tasks/remote_build.rake +0 -158
- data/ext/packaging/tasks/retrieve.rake +0 -45
- data/ext/packaging/tasks/rpm.rake +0 -71
- data/ext/packaging/tasks/rpm_repos.rake +0 -139
- data/ext/packaging/tasks/ship.rake +0 -192
- data/ext/packaging/tasks/sign.rake +0 -164
- data/ext/packaging/tasks/tag.rake +0 -8
- data/ext/packaging/tasks/tar.rake +0 -34
- data/ext/packaging/tasks/tickets.rake +0 -449
- data/ext/packaging/tasks/update.rake +0 -16
- data/ext/packaging/tasks/vendor_gems.rake +0 -110
- data/ext/packaging/tasks/version.rake +0 -33
- data/ext/packaging/tasks/z_data_dump.rake +0 -65
- data/ext/packaging/templates/README +0 -1
- data/ext/packaging/templates/downstream.xml.erb +0 -45
- data/ext/packaging/templates/packaging.xml.erb +0 -330
- data/ext/packaging/templates/repo.xml.erb +0 -106
- data/ext/project_data.yaml +0 -24
- data/lib/puppet/file_system.rb +0 -3
- data/lib/puppet/file_system/path_pattern.rb +0 -97
- data/lib/puppet/indirector/certificate/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/certificate_request/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/errors.rb +0 -5
- data/lib/puppet/indirector/inventory/yaml.rb +0 -81
- data/lib/puppet/indirector/key/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/resource/validator.rb +0 -8
- data/lib/puppet/network/handler.rb +0 -50
- data/lib/puppet/network/handler/ca.rb +0 -61
- data/lib/puppet/network/handler/filebucket.rb +0 -53
- data/lib/puppet/network/handler/fileserver.rb +0 -732
- data/lib/puppet/network/handler/master.rb +0 -87
- data/lib/puppet/network/handler/report.rb +0 -82
- data/lib/puppet/network/handler/runner.rb +0 -33
- data/lib/puppet/network/handler/status.rb +0 -18
- data/lib/puppet/network/http/rack/xmlrpc.rb +0 -65
- data/lib/puppet/network/http_server.rb +0 -3
- data/lib/puppet/network/http_server/mongrel.rb +0 -129
- data/lib/puppet/network/rest_authconfig.rb +0 -102
- data/lib/puppet/network/rest_authorization.rb +0 -23
- data/lib/puppet/network/xmlrpc/processor.rb +0 -86
- data/lib/puppet/network/xmlrpc/server.rb +0 -19
- data/lib/puppet/network/xmlrpc/webrick_servlet.rb +0 -114
- data/lib/puppet/node/inventory.rb +0 -7
- data/lib/puppet/reference/network.rb +0 -39
- data/lib/puppet/transportable.rb +0 -248
- data/lib/puppet/util/autoload/file_cache.rb +0 -92
- data/lib/puppet/util/file_locking.rb +0 -47
- data/lib/puppet/util/settings.rb +0 -926
- data/lib/puppet/util/settings/setting.rb +0 -94
- data/lib/puppet/util/windows/sid.rb +0 -96
- data/lib/puppet/vendor.rb +0 -55
- data/lib/puppet/vendor/load_safe_yaml.rb +0 -1
- data/lib/puppet/vendor/require_vendored.rb +0 -4
- data/lib/puppet/vendor/safe_yaml/CHANGES.md +0 -104
- data/lib/puppet/vendor/safe_yaml/Gemfile +0 -11
- data/lib/puppet/vendor/safe_yaml/LICENSE.txt +0 -22
- data/lib/puppet/vendor/safe_yaml/README.md +0 -179
- data/lib/puppet/vendor/safe_yaml/Rakefile +0 -6
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml.rb +0 -253
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/deep.rb +0 -34
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/date.rb +0 -27
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/hexadecimal.rb +0 -12
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/parse/sexagesimal.rb +0 -26
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_handler.rb +0 -92
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/psych_resolver.rb +0 -52
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/resolver.rb +0 -94
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/safe_to_ruby_visitor.rb +0 -17
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_hack.rb +0 -36
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_node_monkeypatch.rb +0 -43
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/syck_resolver.rb +0 -38
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform.rb +0 -41
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_boolean.rb +0 -21
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_date.rb +0 -11
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_float.rb +0 -33
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_integer.rb +0 -25
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_nil.rb +0 -18
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/to_symbol.rb +0 -13
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/transform/transformation_map.rb +0 -47
- data/lib/puppet/vendor/safe_yaml/lib/safe_yaml/version.rb +0 -3
- data/lib/puppet/vendor/safe_yaml/run_specs_all_ruby_versions.sh +0 -21
- data/lib/puppet/vendor/safe_yaml/safe_yaml.gemspec +0 -18
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.2.yaml +0 -2
- data/lib/puppet/vendor/safe_yaml/spec/exploit.1.9.3.yaml +0 -2
- data/lib/puppet/vendor/safe_yaml/spec/psych_resolver_spec.rb +0 -10
- data/lib/puppet/vendor/safe_yaml/spec/resolver_specs.rb +0 -250
- data/lib/puppet/vendor/safe_yaml/spec/safe_yaml_spec.rb +0 -702
- data/lib/puppet/vendor/safe_yaml/spec/spec_helper.rb +0 -18
- data/lib/puppet/vendor/safe_yaml/spec/support/exploitable_back_door.rb +0 -29
- data/lib/puppet/vendor/safe_yaml/spec/syck_resolver_spec.rb +0 -10
- data/lib/puppet/vendor/safe_yaml/spec/transform/base64_spec.rb +0 -11
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_date_spec.rb +0 -34
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_float_spec.rb +0 -42
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_integer_spec.rb +0 -59
- data/lib/puppet/vendor/safe_yaml/spec/transform/to_symbol_spec.rb +0 -49
- data/man/man8/filebucket.8 +0 -81
- data/man/man8/pi.8 +0 -51
- data/man/man8/puppetca.8 +0 -97
- data/man/man8/puppetd.8 +0 -154
- data/man/man8/puppetdoc.8 +0 -113
- data/man/man8/puppetmasterd.8 +0 -78
- data/man/man8/puppetqd.8 +0 -55
- data/man/man8/puppetrun.8 +0 -127
- data/man/man8/ralsh.8 +0 -84
- data/spec/integration/network/handler_spec.rb +0 -24
- data/spec/integration/network/rest_authconfig_spec.rb +0 -164
- data/spec/integration/util/file_locking_spec.rb +0 -56
- data/spec/unit/agent_backward_compatibility_spec.rb +0 -152
- data/spec/unit/file_system/path_pattern_spec.rb +0 -139
- data/spec/unit/indirector/catalog/static_compiler_spec.rb +0 -194
- data/spec/unit/indirector/certificate/disabled_ca_spec.rb +0 -33
- data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +0 -33
- data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +0 -33
- data/spec/unit/indirector/inventory/yaml_spec.rb +0 -220
- data/spec/unit/indirector/key/disabled_ca_spec.rb +0 -33
- data/spec/unit/network/handler/ca_spec.rb +0 -87
- data/spec/unit/network/handler/fileserver_spec.rb +0 -201
- data/spec/unit/network/http/mongrel/xmlrpc_spec.rb +0 -0
- data/spec/unit/network/http/rack/xmlrpc_spec.rb +0 -155
- data/spec/unit/network/http/webrick/xmlrpc_spec.rb +0 -0
- data/spec/unit/network/rest_authconfig_spec.rb +0 -142
- data/spec/unit/other/transbucket_spec.rb +0 -184
- data/spec/unit/other/transobject_spec.rb +0 -111
- data/spec/unit/provider/zfs/solaris_spec.rb +0 -99
- data/spec/unit/provider/zpool/solaris_spec.rb +0 -208
- data/spec/unit/transportable_spec.rb +0 -0
- data/spec/unit/util/autoload/file_cache_spec.rb +0 -158
- data/spec/unit/util/file_locking_spec.rb +0 -159
- data/spec/unit/util/settings_spec.rb +0 -1088
- data/spec/unit/util/windows/sid_spec.rb +0 -100
- data/test/README +0 -24
- data/test/Rakefile +0 -96
- data/test/data/failers/badclassnoparam +0 -10
- data/test/data/failers/badclassparam +0 -10
- data/test/data/failers/badcompnoparam +0 -9
- data/test/data/failers/badcompparam +0 -9
- data/test/data/failers/badtypeparam +0 -3
- data/test/data/failers/noobjectrvalue +0 -1
- data/test/data/providers/cron/crontab.allthree +0 -17
- data/test/data/providers/cron/crontab.envNcomment +0 -12
- data/test/data/providers/cron/crontab.envNname +0 -11
- data/test/data/providers/cron/crontab.multirecords +0 -12
- data/test/data/providers/cron/crontab_collections.yaml +0 -44
- data/test/data/providers/cron/crontab_multiple_with_env.yaml +0 -54
- data/test/data/providers/cron/examples/freebsd +0 -2
- data/test/data/providers/cron/examples/one +0 -14
- data/test/data/providers/cron/examples/openbsd +0 -20
- data/test/data/providers/host/parsed/valid_hosts +0 -19
- data/test/data/providers/mailalias/aliases/test1 +0 -28
- data/test/data/providers/mount/parsed/aix.mount +0 -7
- data/test/data/providers/mount/parsed/darwin.mount +0 -6
- data/test/data/providers/mount/parsed/hpux.mount +0 -17
- data/test/data/providers/mount/parsed/linux.mount +0 -5
- data/test/data/providers/mount/parsed/solaris.mount +0 -6
- data/test/data/providers/package/testpackages.yaml +0 -65
- data/test/data/providers/ssh_authorized_key/parsed/authorized_keys +0 -7
- data/test/data/providers/ssh_authorized_key/parsed/authorized_keys1 +0 -3
- data/test/data/providers/ssh_authorized_key/parsed/authorized_keys2 +0 -1
- data/test/data/reports/1.yaml +0 -108
- data/test/data/reports/2.yaml +0 -108
- data/test/data/reports/tagmail_failers.conf +0 -3
- data/test/data/reports/tagmail_passers.conf +0 -30
- data/test/data/snippets/aliastest.pp +0 -16
- data/test/data/snippets/append.pp +0 -11
- data/test/data/snippets/argumentdefaults +0 -14
- data/test/data/snippets/arithmetic_expression.pp +0 -8
- data/test/data/snippets/arraytrailingcomma.pp +0 -3
- data/test/data/snippets/casestatement.pp +0 -65
- data/test/data/snippets/classheirarchy.pp +0 -15
- data/test/data/snippets/classincludes.pp +0 -17
- data/test/data/snippets/classpathtest +0 -11
- data/test/data/snippets/collection.pp +0 -10
- data/test/data/snippets/collection_override.pp +0 -8
- data/test/data/snippets/collection_within_virtual_definitions.pp +0 -20
- data/test/data/snippets/componentmetaparams.pp +0 -11
- data/test/data/snippets/componentrequire.pp +0 -8
- data/test/data/snippets/deepclassheirarchy.pp +0 -23
- data/test/data/snippets/defineoverrides.pp +0 -17
- data/test/data/snippets/emptyclass.pp +0 -9
- data/test/data/snippets/emptyexec.pp +0 -3
- data/test/data/snippets/emptyifelse.pp +0 -9
- data/test/data/snippets/falsevalues.pp +0 -3
- data/test/data/snippets/filecreate +0 -11
- data/test/data/snippets/fqdefinition.pp +0 -5
- data/test/data/snippets/fqparents.pp +0 -11
- data/test/data/snippets/funccomma.pp +0 -5
- data/test/data/snippets/hash.pp +0 -33
- data/test/data/snippets/ifexpression.pp +0 -12
- data/test/data/snippets/implicititeration +0 -15
- data/test/data/snippets/multilinecomments.pp +0 -10
- data/test/data/snippets/multipleclass.pp +0 -9
- data/test/data/snippets/multipleinstances +0 -7
- data/test/data/snippets/multisubs.pp +0 -13
- data/test/data/snippets/namevartest +0 -9
- data/test/data/snippets/scopetest +0 -13
- data/test/data/snippets/selectorvalues.pp +0 -49
- data/test/data/snippets/simpledefaults +0 -5
- data/test/data/snippets/simpleselector +0 -38
- data/test/data/snippets/singleary.pp +0 -19
- data/test/data/snippets/singlequote.pp +0 -11
- data/test/data/snippets/singleselector.pp +0 -22
- data/test/data/snippets/subclass_name_duplication.pp +0 -11
- data/test/data/snippets/tag.pp +0 -9
- data/test/data/snippets/tagged.pp +0 -35
- data/test/data/snippets/virtualresources.pp +0 -14
- data/test/data/types/hosts/1 +0 -3
- data/test/data/types/hosts/2 +0 -13
- data/test/data/types/hosts/solaris +0 -5
- data/test/data/types/mailalias/file1 +0 -183
- data/test/data/types/mount/freebsd.fstab +0 -7
- data/test/data/types/mount/linux.fstab +0 -12
- data/test/data/types/mount/solaris.fstab +0 -12
- data/test/data/types/port/1 +0 -533
- data/test/data/types/port/darwin +0 -11866
- data/test/data/types/ssh_authorized_key/1 +0 -2
- data/test/data/types/yumrepos/fedora-devel.repo +0 -26
- data/test/data/types/yumrepos/fedora.repo +0 -9
- data/test/language/ast.rb +0 -90
- data/test/language/ast/variable.rb +0 -25
- data/test/language/functions.rb +0 -540
- data/test/language/parser.rb +0 -739
- data/test/language/scope.rb +0 -261
- data/test/language/snippets.rb +0 -512
- data/test/language/transportable.rb +0 -87
- data/test/lib/puppettest.rb +0 -307
- data/test/lib/puppettest/certificates.rb +0 -74
- data/test/lib/puppettest/exetest.rb +0 -125
- data/test/lib/puppettest/fakes.rb +0 -199
- data/test/lib/puppettest/fileparsing.rb +0 -28
- data/test/lib/puppettest/filetesting.rb +0 -221
- data/test/lib/puppettest/parsertesting.rb +0 -424
- data/test/lib/puppettest/railstesting.rb +0 -18
- data/test/lib/puppettest/reporttesting.rb +0 -16
- data/test/lib/puppettest/resourcetesting.rb +0 -54
- data/test/lib/puppettest/runnable_test.rb +0 -43
- data/test/lib/puppettest/servertest.rb +0 -77
- data/test/lib/puppettest/support.rb +0 -8
- data/test/lib/puppettest/support/assertions.rb +0 -69
- data/test/lib/puppettest/support/helpers.rb +0 -18
- data/test/lib/puppettest/support/resources.rb +0 -31
- data/test/lib/puppettest/support/utils.rb +0 -141
- data/test/lib/puppettest/testcase.rb +0 -24
- data/test/lib/rake/puppet_test_loader.rb +0 -14
- data/test/lib/rake/puppet_testtask.rb +0 -19
- data/test/lib/stubba.rb +0 -2
- data/test/network/authconfig.rb +0 -69
- data/test/network/authorization.rb +0 -138
- data/test/network/authstore.rb +0 -538
- data/test/network/client_request.rb +0 -38
- data/test/network/handler/fileserver.rb +0 -1266
- data/test/network/handler/master.rb +0 -93
- data/test/network/handler/report.rb +0 -47
- data/test/network/handler/runner.rb +0 -20
- data/test/network/rights.rb +0 -40
- data/test/network/xmlrpc/processor.rb +0 -79
- data/test/network/xmlrpc/server.rb +0 -26
- data/test/network/xmlrpc/webrick_servlet.rb +0 -35
- data/test/other/provider.rb +0 -90
- data/test/other/puppet.rb +0 -85
- data/test/other/relationships.rb +0 -91
- data/test/other/report.rb +0 -135
- data/test/other/transactions.rb +0 -395
- data/test/puppet/defaults.rb +0 -65
- data/test/rails/rails.rb +0 -24
- data/test/rails/railsparameter.rb +0 -80
- data/test/ral/manager/attributes.rb +0 -296
- data/test/ral/manager/instances.rb +0 -88
- data/test/ral/manager/manager.rb +0 -50
- data/test/ral/manager/provider.rb +0 -84
- data/test/ral/manager/type.rb +0 -361
- data/test/ral/providers/cron/crontab.rb +0 -652
- data/test/ral/providers/group.rb +0 -242
- data/test/ral/providers/host/parsed.rb +0 -32
- data/test/ral/providers/mailalias/aliases.rb +0 -55
- data/test/ral/providers/nameservice.rb +0 -32
- data/test/ral/providers/package.rb +0 -245
- data/test/ral/providers/package/aptitude.rb +0 -83
- data/test/ral/providers/package/aptrpm.rb +0 -100
- data/test/ral/providers/parsedfile.rb +0 -695
- data/test/ral/providers/port/parsed.rb +0 -232
- data/test/ral/providers/provider.rb +0 -529
- data/test/ral/providers/service/base.rb +0 -76
- data/test/ral/providers/sshkey/parsed.rb +0 -112
- data/test/ral/providers/user.rb +0 -586
- data/test/ral/providers/user/useradd.rb +0 -233
- data/test/ral/type/cron.rb +0 -505
- data/test/ral/type/exec.rb +0 -717
- data/test/ral/type/file.rb +0 -912
- data/test/ral/type/file/target.rb +0 -346
- data/test/ral/type/fileignoresource.rb +0 -265
- data/test/ral/type/filesources.rb +0 -446
- data/test/ral/type/host.rb +0 -180
- data/test/ral/type/mailalias.rb +0 -45
- data/test/ral/type/port.rb +0 -147
- data/test/ral/type/resources.rb +0 -104
- data/test/ral/type/service.rb +0 -38
- data/test/ral/type/sshkey.rb +0 -148
- data/test/ral/type/user.rb +0 -167
- data/test/ral/type/yumrepo.rb +0 -116
- data/test/ral/type/zone.rb +0 -447
- data/test/test +0 -241
- data/test/util/classgen.rb +0 -241
- data/test/util/execution.rb +0 -33
- data/test/util/fileparsing.rb +0 -721
- data/test/util/inifile.rb +0 -138
- data/test/util/instance_loader.rb +0 -52
- data/test/util/log.rb +0 -219
- data/test/util/metrics.rb +0 -72
- data/test/util/package.rb +0 -25
- data/test/util/pidlock.rb +0 -125
- data/test/util/settings.rb +0 -773
- data/test/util/storage.rb +0 -81
- data/test/util/subclass_loader.rb +0 -89
- data/test/util/utiltest.rb +0 -223
data/lib/puppet/parser/parser.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# DO NOT MODIFY!!!!
|
3
|
-
# This file is automatically generated by Racc 1.4.
|
3
|
+
# This file is automatically generated by Racc 1.4.8
|
4
4
|
# from Racc grammer file "".
|
5
5
|
#
|
6
6
|
|
@@ -21,7 +21,7 @@ module Puppet
|
|
21
21
|
module Parser
|
22
22
|
class Parser < Racc::Parser
|
23
23
|
|
24
|
-
module_eval(<<'...end grammar.ra/module_eval...', 'grammar.ra',
|
24
|
+
module_eval(<<'...end grammar.ra/module_eval...', 'grammar.ra', 794)
|
25
25
|
|
26
26
|
# It got too annoying having code in a file that needs to be compiled.
|
27
27
|
require 'puppet/parser/parser_support'
|
@@ -34,94 +34,101 @@ require 'puppet/parser/parser_support'
|
|
34
34
|
##### State transition tables begin ###
|
35
35
|
|
36
36
|
clist = [
|
37
|
-
'
|
38
|
-
'
|
39
|
-
'
|
40
|
-
'
|
41
|
-
'
|
42
|
-
'
|
43
|
-
'
|
44
|
-
'
|
45
|
-
'
|
46
|
-
'
|
47
|
-
'
|
48
|
-
'
|
49
|
-
'286,
|
50
|
-
'
|
51
|
-
'
|
52
|
-
'
|
53
|
-
'
|
54
|
-
'
|
55
|
-
'
|
56
|
-
'
|
57
|
-
'
|
58
|
-
'
|
59
|
-
'
|
60
|
-
'
|
61
|
-
',
|
62
|
-
',
|
63
|
-
'
|
64
|
-
'
|
65
|
-
'
|
66
|
-
'
|
67
|
-
',
|
68
|
-
'
|
69
|
-
',,,,
|
70
|
-
'
|
71
|
-
',,,,
|
72
|
-
'
|
73
|
-
',
|
74
|
-
'
|
75
|
-
'
|
76
|
-
',
|
77
|
-
',
|
78
|
-
'
|
79
|
-
'
|
80
|
-
'
|
81
|
-
',
|
82
|
-
'
|
83
|
-
',
|
84
|
-
'
|
85
|
-
'
|
86
|
-
'
|
87
|
-
'
|
88
|
-
'
|
89
|
-
',
|
90
|
-
'
|
91
|
-
'
|
92
|
-
'
|
93
|
-
'
|
94
|
-
'
|
95
|
-
'
|
96
|
-
',
|
97
|
-
'
|
98
|
-
',
|
99
|
-
',
|
100
|
-
'
|
101
|
-
'
|
102
|
-
'
|
103
|
-
'
|
104
|
-
'
|
105
|
-
'
|
106
|
-
'
|
107
|
-
'
|
108
|
-
'
|
109
|
-
'
|
110
|
-
'
|
111
|
-
'
|
112
|
-
'
|
113
|
-
'
|
114
|
-
'
|
115
|
-
'
|
116
|
-
',,
|
117
|
-
'
|
118
|
-
'
|
119
|
-
'
|
120
|
-
'
|
121
|
-
'
|
122
|
-
'
|
123
|
-
'
|
124
|
-
|
37
|
+
'9,13,167,168,103,155,370,103,282,105,173,281,293,53,371,142,146,54,274',
|
38
|
+
'313,292,-177,106,154,137,139,143,145,40,94,48,1,314,10,12,174,21,29',
|
39
|
+
'35,357,44,49,2,9,13,15,102,138,141,34,317,148,149,132,133,135,136,-176',
|
40
|
+
'140,144,33,9,13,305,302,134,8,98,274,299,99,40,350,48,1,367,10,12,366',
|
41
|
+
'21,29,35,337,44,49,2,9,13,15,33,296,297,34,396,64,326,296,297,29,222',
|
42
|
+
'9,13,49,33,9,13,15,161,72,8,34,53,-112,325,40,54,48,1,343,10,12,33,21',
|
43
|
+
'29,35,154,44,49,2,9,13,15,155,119,-196,34,394,64,160,90,179,29,75,-123',
|
44
|
+
'94,49,33,-183,154,15,154,178,8,34,9,13,183,40,309,48,1,340,10,12,33',
|
45
|
+
'21,29,35,308,44,49,2,9,13,15,179,277,322,34,392,274,275,98,306,86,99',
|
46
|
+
'178,142,146,33,304,183,160,84,85,8,137,139,143,145,40,94,48,1,33,10',
|
47
|
+
'12,53,21,29,35,54,44,49,2,9,13,15,15,138,141,34,302,148,149,132,133',
|
48
|
+
'135,136,334,140,144,33,9,13,132,133,134,8,98,140,144,99,40,291,48,1',
|
49
|
+
'134,10,12,286,21,29,35,-130,44,49,2,9,13,15,33,335,53,34,271,64,54,179',
|
50
|
+
'179,29,222,274,360,49,33,140,144,15,178,178,8,34,134,183,183,40,367',
|
51
|
+
'48,1,366,10,12,33,21,29,35,283,44,49,2,9,13,15,-178,72,33,34,33,-130',
|
52
|
+
'-130,-130,-130,249,148,149,132,133,33,9,13,140,144,295,8,342,296,297',
|
53
|
+
'134,205,206,208,189,191,64,195,197,200,239,243,248,207,247,232,9,13',
|
54
|
+
'15,225,199,202,244,347,64,132,133,188,29,222,140,144,49,33,9,13,15,134',
|
55
|
+
'190,194,34,140,144,105,40,172,48,1,134,10,12,33,21,29,35,306,44,49,2',
|
56
|
+
'9,13,15,123,354,315,34,117,64,274,275,-182,29,222,-177,-180,49,33,9',
|
57
|
+
'13,15,300,72,8,34,274,299,-178,40,332,48,1,363,10,12,33,21,29,35,-122',
|
58
|
+
'44,49,2,9,13,15,-181,364,338,34,381,64,274,299,331,29,75,-179,-176,49',
|
59
|
+
'33,372,-183,15,86,375,8,34,376,123,249,40,379,48,1,121,10,12,33,21,29',
|
60
|
+
'35,119,44,49,2,9,13,15,330,382,117,34,329,-178,383,9,13,-179,109,113',
|
61
|
+
'-227,-196,33,-40,-40,-40,-40,107,8,59,60,61,57,40,385,48,1,112,10,12',
|
62
|
+
'-129,21,29,35,92,44,49,2,64,388,15,-184,29,75,34,390,49,9,13,302,15',
|
63
|
+
'72,117,78,34,33,-96,9,13,-179,56,8,397,398,,33,,9,13,65,,72,,78,-44',
|
64
|
+
'-44,-44,-44,,,64,,,,29,75,,,49,65,64,53,15,68,29,129,34,44,49,83,64',
|
65
|
+
',15,,29,75,34,33,49,,,,15,68,9,13,34,33,72,83,78,,,,9,13,,33,72,,78',
|
66
|
+
',,,9,13,65,,72,,78,-38,-38,-38,-38,,65,64,,,,29,75,,,49,65,64,,15,68',
|
67
|
+
'29,75,34,,49,83,64,,15,68,29,75,34,33,49,83,,,15,68,9,13,34,33,72,83',
|
68
|
+
'78,,284,148,149,132,133,33,,,140,144,142,146,,,65,134,,,,137,139,143',
|
69
|
+
'145,,,64,,,,29,75,,,49,,9,13,15,68,72,,34,138,141,83,,148,149,132,133',
|
70
|
+
'135,136,33,140,144,9,13,,,72,134,78,,,,9,13,,64,72,,78,29,222,,,49,65',
|
71
|
+
',,15,,,,34,,,65,64,,,,29,75,,33,49,,64,,15,68,29,75,34,,49,83,,,15,68',
|
72
|
+
'9,13,34,33,72,83,78,,,,9,13,,33,72,,78,59,60,61,57,,65,,,,,,,,,,65,64',
|
73
|
+
',,,29,75,,,49,,64,,15,68,29,75,34,,49,83,,,15,68,9,13,34,33,72,83,78',
|
74
|
+
',,,9,13,,33,72,152,78,,,,9,13,65,278,,,,369,,,,,65,64,,,,29,75,,,49',
|
75
|
+
',64,,15,68,29,75,34,,49,83,64,,15,68,29,222,34,33,49,83,,,15,,9,13,34',
|
76
|
+
'33,72,,78,,,,9,13,,33,72,,78,,,,9,13,65,,72,,78,,,,,,65,64,,,,29,75',
|
77
|
+
',,49,65,64,,15,68,29,75,34,,49,83,64,,15,68,29,75,34,33,49,83,,,15,68',
|
78
|
+
'9,13,34,33,72,83,78,,,,9,13,,33,72,,78,,,,9,13,65,,72,,78,,,,,,65,64',
|
79
|
+
',,,29,75,,,49,65,64,,15,68,29,75,34,,49,83,64,,15,68,29,75,34,33,49',
|
80
|
+
'83,,,15,68,9,13,34,33,72,83,78,,,,9,13,,33,72,,78,,,,9,13,65,,72,,78',
|
81
|
+
',,,,,65,64,,,,29,75,,,49,65,64,,15,68,29,75,34,,49,83,64,,15,68,29,75',
|
82
|
+
'34,33,49,83,,,15,68,9,13,34,33,72,83,78,,,,9,13,,33,72,,78,,,,9,13,65',
|
83
|
+
',72,,78,,,,,,65,64,,,,29,75,,,49,65,64,,15,68,29,75,34,,49,83,64,,15',
|
84
|
+
'68,29,75,34,33,49,83,,,15,68,9,13,34,33,72,83,78,,,,9,13,,33,,,,,,,9',
|
85
|
+
'13,65,,72,,78,,,,,,,64,,,,29,75,,,49,65,64,53,15,68,29,129,34,44,49',
|
86
|
+
'83,64,,15,,29,75,34,33,49,,,,15,68,9,13,34,33,72,83,78,,,,9,13,,33,72',
|
87
|
+
',78,,,,9,13,65,,72,,78,,,,,,65,64,,,,29,75,,,49,65,64,,15,68,29,75,34',
|
88
|
+
',49,83,64,,15,68,29,75,34,33,49,83,,,15,68,9,13,34,33,72,83,78,,,,9',
|
89
|
+
'13,,33,72,,78,,,,9,13,65,,72,,78,,,,,,65,64,,,,29,75,,,49,65,64,,15',
|
90
|
+
'68,29,75,34,,49,83,64,,15,68,29,75,34,33,49,83,,,15,68,9,13,34,33,72',
|
91
|
+
'83,78,,,,9,13,,33,72,,78,,,,9,13,65,,,,223,,,,,,65,64,,,,29,75,,,49',
|
92
|
+
',64,,15,68,29,75,34,,49,83,64,,15,68,29,222,34,33,49,83,,,15,,9,13,34',
|
93
|
+
'33,72,,78,,,,,,,33,,,,9,13,,,72,65,78,,,,,,,,,,64,,,,29,75,65,226,49',
|
94
|
+
',,,15,68,,,34,64,,83,,29,75,,,49,,33,,15,68,,,34,9,13,83,,72,152,78',
|
95
|
+
',,,33,,,,,,,9,13,,,72,65,78,,,,,,,,,,64,,,,29,75,65,,49,,,,15,68,,,34',
|
96
|
+
'64,,83,,29,75,,,49,,33,,15,68,9,13,34,,72,83,78,,,,9,13,,33,72,,78,',
|
97
|
+
',,9,13,65,,72,,78,,,,,,65,64,,,,29,75,,,49,65,64,,15,68,29,75,34,,49',
|
98
|
+
'83,64,,15,68,29,75,34,33,49,83,,,15,68,9,13,34,33,72,83,78,,,230,,,',
|
99
|
+
'33,,,,,142,146,,,65,,,,,137,139,143,145,,,64,,,,29,75,,,49,,,,15,68',
|
100
|
+
',,34,138,141,83,,148,149,132,133,135,136,33,140,144,147,,,,,134,,,,142',
|
101
|
+
'146,,,,,229,,,137,139,143,145,,,142,146,,,,,,,,137,139,143,145,,,,,138',
|
102
|
+
'141,,,148,149,132,133,135,136,,140,144,,,138,141,,134,148,149,132,133',
|
103
|
+
'135,136,,140,144,142,146,,,,134,,,,137,139,143,145,,,142,146,,,,,,,253',
|
104
|
+
'137,139,143,145,,,,,138,141,,,148,149,132,133,135,136,,140,144,,,138',
|
105
|
+
'141,,134,148,149,132,133,135,136,,140,144,142,146,,,,134,,,,137,139',
|
106
|
+
'143,145,,,142,146,,,,,,,,137,139,143,145,,,,,,141,,,148,149,132,133',
|
107
|
+
'135,136,,140,144,,,138,141,,134,148,149,132,133,135,136,,140,144,142',
|
108
|
+
'146,,,,134,,,,137,139,143,145,,,142,146,,,,,,,,137,139,143,145,,,,,138',
|
109
|
+
'141,,,148,149,132,133,135,136,,140,144,,,,,,134,148,149,132,133,135',
|
110
|
+
'136,,140,144,142,146,,,,134,,,,137,139,143,145,,,142,146,,,,,,,,137',
|
111
|
+
'139,143,145,,,,,,,,,148,149,132,133,135,136,,140,144,,,138,141,,134',
|
112
|
+
'148,149,132,133,135,136,,140,144,142,146,,,,134,,,,137,139,143,145,',
|
113
|
+
',142,146,,,,,,,,137,139,143,145,,,,,138,141,,,148,149,132,133,135,136',
|
114
|
+
',140,144,,,138,141,,134,148,149,132,133,135,136,,140,144,142,146,,,',
|
115
|
+
'134,,,,137,139,143,145,,,142,146,,,,,,,,137,139,143,145,,,,,138,141',
|
116
|
+
',,148,149,132,133,135,136,,140,144,,,138,141,,134,148,149,132,133,135',
|
117
|
+
'136,,140,144,142,146,,,,134,,,,137,139,143,145,,,142,146,,,,,,,,137',
|
118
|
+
'139,143,145,,,,,138,141,146,,148,149,132,133,135,136,137,140,144,,,',
|
119
|
+
',146,134,148,149,132,133,135,136,137,140,144,,,,,,134,,146,,148,149',
|
120
|
+
'132,133,135,136,137,140,144,,,,,146,134,148,149,132,133,135,136,137',
|
121
|
+
'140,144,,,,,,134,,,,148,149,132,133,135,136,,140,144,,,,,,134,148,149',
|
122
|
+
'132,133,135,136,,140,144,205,206,208,189,191,134,195,197,200,201,215',
|
123
|
+
',207,209,,,,,,199,202,204,205,206,208,189,191,,195,197,200,201,215,',
|
124
|
+
'207,209,,190,194,,,199,202,204,205,206,208,189,191,,195,197,200,201',
|
125
|
+
'203,,207,209,,190,194,,,199,202,204,205,206,208,189,191,,195,197,200',
|
126
|
+
'201,203,,207,209,,190,194,,,199,202,204,205,206,208,189,191,,195,197',
|
127
|
+
'200,201,203,,207,209,,190,194,,,199,202,204,205,206,208,189,191,,195',
|
128
|
+
'197,200,201,215,,207,209,,190,194,,,199,202,204,148,149,132,133,135',
|
129
|
+
'136,,140,144,,,,,,134,190,194,148,149,132,133,135,136,,140,144,,,,,',
|
130
|
+
'134' ]
|
131
|
+
racc_action_table = arr = ::Array.new(2419, nil)
|
125
132
|
idx = 0
|
126
133
|
clist.each do |str|
|
127
134
|
str.split(',', -1).each do |i|
|
@@ -131,102 +138,109 @@ clist = [
|
|
131
138
|
end
|
132
139
|
|
133
140
|
clist = [
|
134
|
-
'
|
135
|
-
'
|
136
|
-
'
|
137
|
-
'
|
138
|
-
'
|
139
|
-
'
|
140
|
-
'
|
141
|
-
'
|
142
|
-
'
|
143
|
-
'
|
144
|
-
'
|
145
|
-
'
|
146
|
-
'
|
147
|
-
'
|
148
|
-
'
|
149
|
-
'
|
150
|
-
'
|
151
|
-
'
|
152
|
-
'
|
153
|
-
'
|
154
|
-
'
|
155
|
-
'
|
156
|
-
'
|
157
|
-
'
|
158
|
-
'
|
159
|
-
'
|
160
|
-
'
|
161
|
-
'
|
162
|
-
',
|
163
|
-
'40,,
|
164
|
-
',40
|
165
|
-
'
|
166
|
-
',
|
167
|
-
'
|
168
|
-
'
|
169
|
-
'
|
170
|
-
'
|
171
|
-
'
|
172
|
-
'
|
173
|
-
'
|
174
|
-
'
|
175
|
-
',
|
176
|
-
'
|
177
|
-
'
|
178
|
-
'
|
179
|
-
',
|
180
|
-
'
|
181
|
-
',
|
182
|
-
'
|
183
|
-
'
|
184
|
-
'
|
185
|
-
'
|
186
|
-
'
|
187
|
-
'
|
188
|
-
'
|
189
|
-
'
|
190
|
-
'
|
191
|
-
'
|
192
|
-
'
|
193
|
-
',
|
194
|
-
',
|
195
|
-
'
|
196
|
-
'
|
197
|
-
'
|
198
|
-
'
|
199
|
-
'
|
200
|
-
'
|
201
|
-
'
|
202
|
-
'
|
203
|
-
',
|
204
|
-
'
|
205
|
-
'
|
206
|
-
'
|
207
|
-
'
|
208
|
-
'
|
209
|
-
'
|
210
|
-
'
|
211
|
-
'
|
212
|
-
'
|
213
|
-
'
|
214
|
-
'
|
215
|
-
'
|
216
|
-
'
|
217
|
-
'
|
218
|
-
'
|
219
|
-
'
|
220
|
-
'
|
221
|
-
'
|
222
|
-
'
|
223
|
-
'
|
224
|
-
'
|
225
|
-
'
|
226
|
-
'
|
227
|
-
'
|
228
|
-
'
|
229
|
-
|
141
|
+
'0,0,88,88,71,75,320,23,156,23,95,156,177,12,320,88,88,12,227,227,177',
|
142
|
+
'71,23,75,88,88,88,88,0,174,0,0,227,0,0,95,0,0,0,307,0,0,0,229,229,0',
|
143
|
+
'23,88,88,0,229,88,88,88,88,88,88,237,88,88,0,230,230,210,236,88,0,174',
|
144
|
+
'279,279,174,229,294,229,229,317,229,229,317,229,229,229,279,229,229',
|
145
|
+
'229,390,390,229,174,210,210,229,390,230,235,294,294,230,230,78,78,230',
|
146
|
+
'229,309,309,230,78,309,229,230,286,243,233,390,286,390,390,286,390,390',
|
147
|
+
'230,390,390,390,243,390,390,390,388,388,390,129,232,129,390,388,309',
|
148
|
+
'78,14,179,309,309,226,173,309,390,14,222,309,129,179,390,309,281,281',
|
149
|
+
'179,388,219,388,388,281,388,388,309,388,388,388,215,388,388,388,380',
|
150
|
+
'380,388,106,153,231,388,380,153,153,173,212,10,173,106,231,231,388,198',
|
151
|
+
'106,281,10,10,388,231,231,231,231,380,21,380,380,173,380,380,22,380',
|
152
|
+
'380,380,22,380,380,380,269,269,380,22,231,231,380,193,231,231,231,231',
|
153
|
+
'231,231,270,231,231,380,361,361,273,273,231,380,21,273,273,21,269,175',
|
154
|
+
'269,269,273,269,269,166,269,269,269,315,269,269,269,147,147,269,21,275',
|
155
|
+
'1,269,147,361,1,102,298,361,361,311,311,361,269,254,254,361,102,298',
|
156
|
+
'269,361,254,102,298,147,364,147,147,364,147,147,361,147,147,147,158',
|
157
|
+
'147,147,147,121,121,147,242,121,144,147,140,315,315,315,315,123,257',
|
158
|
+
'257,257,257,147,370,370,257,257,184,147,285,184,184,257,121,121,121',
|
159
|
+
'121,121,121,121,121,121,121,121,122,121,121,118,291,291,121,110,121',
|
160
|
+
'121,121,291,370,272,272,104,370,370,272,272,370,121,223,223,370,272',
|
161
|
+
'121,121,370,255,255,100,291,92,291,291,255,291,291,370,291,291,291,301',
|
162
|
+
'291,291,291,26,26,291,87,303,228,291,82,223,228,228,81,223,223,238,79',
|
163
|
+
'223,291,225,225,223,187,225,291,223,187,187,77,26,251,26,26,313,26,26',
|
164
|
+
'223,26,26,26,314,26,26,26,342,342,26,74,316,280,26,342,225,280,280,250',
|
165
|
+
'225,225,73,69,225,26,324,67,225,64,327,26,225,328,55,332,342,333,342',
|
166
|
+
'342,50,342,342,225,342,342,342,48,342,342,342,248,248,342,249,346,45',
|
167
|
+
'342,248,36,352,35,35,30,28,35,360,35,342,4,4,4,4,24,342,5,5,5,5,248',
|
168
|
+
'362,248,248,35,248,248,239,248,248,248,20,248,248,248,35,367,248,247',
|
169
|
+
'35,35,248,371,35,8,8,374,35,8,246,8,35,248,244,58,58,240,2,248,393,395',
|
170
|
+
',35,,40,40,8,,40,,40,11,11,11,11,,,8,,,,8,8,,,8,40,58,58,8,8,58,58,8',
|
171
|
+
'58,58,8,40,,58,,40,40,58,8,40,,,,40,40,44,44,40,58,44,40,44,,,,283,283',
|
172
|
+
',40,283,,283,,,,167,167,44,,167,,167,47,47,47,47,,283,44,,,,44,44,,',
|
173
|
+
'44,167,283,,44,44,283,283,44,,283,44,167,,283,283,167,167,283,44,167',
|
174
|
+
'283,,,167,167,330,330,167,283,330,167,330,,165,258,258,258,258,167,',
|
175
|
+
',258,258,165,165,,,330,258,,,,165,165,165,165,,,330,,,,330,330,,,330',
|
176
|
+
',325,325,330,330,325,,330,165,165,330,,165,165,165,165,165,165,330,165',
|
177
|
+
'165,65,65,,,65,165,65,,,,276,276,,325,276,,276,325,325,,,325,65,,,325',
|
178
|
+
',,,325,,,276,65,,,,65,65,,325,65,,276,,65,65,276,276,65,,276,65,,,276',
|
179
|
+
'276,13,13,276,65,13,276,13,,,,155,155,,276,155,,155,16,16,16,16,,13',
|
180
|
+
',,,,,,,,,155,13,,,,13,13,,,13,,155,,13,13,155,155,13,,155,13,,,155,155',
|
181
|
+
'154,154,155,13,154,155,154,,,,72,72,,155,72,72,72,,,,318,318,154,154',
|
182
|
+
',,,318,,,,,72,154,,,,154,154,,,154,,72,,154,154,72,72,154,,72,154,318',
|
183
|
+
',72,72,318,318,72,154,318,72,,,318,,149,149,318,72,149,,149,,,,148,148',
|
184
|
+
',318,148,,148,,,,146,146,149,,146,,146,,,,,,148,149,,,,149,149,,,149',
|
185
|
+
'146,148,,149,149,148,148,149,,148,149,146,,148,148,146,146,148,149,146',
|
186
|
+
'148,,,146,146,308,308,146,148,308,146,308,,,,145,145,,146,145,,145,',
|
187
|
+
',,304,304,308,,304,,304,,,,,,145,308,,,,308,308,,,308,304,145,,308,308',
|
188
|
+
'145,145,308,,145,308,304,,145,145,304,304,145,308,304,145,,,304,304',
|
189
|
+
'83,83,304,145,83,304,83,,,,84,84,,304,84,,84,,,,85,85,83,,85,,85,,,',
|
190
|
+
',,84,83,,,,83,83,,,83,85,84,,83,83,84,84,83,,84,83,85,,84,84,85,85,84',
|
191
|
+
'83,85,84,,,85,85,86,86,85,84,86,85,86,,,,143,143,,85,143,,143,,,,366',
|
192
|
+
'366,86,,366,,366,,,,,,143,86,,,,86,86,,,86,366,143,,86,86,143,143,86',
|
193
|
+
',143,86,366,,143,143,366,366,143,86,366,143,,,366,366,90,90,366,143',
|
194
|
+
'90,366,90,,,,91,91,,366,,,,,,,142,142,90,,142,,142,,,,,,,90,,,,90,90',
|
195
|
+
',,90,142,91,91,90,90,91,91,90,91,91,90,142,,91,,142,142,91,90,142,,',
|
196
|
+
',142,142,141,141,142,91,141,142,141,,,,139,139,,142,139,,139,,,,138',
|
197
|
+
'138,141,,138,,138,,,,,,139,141,,,,141,141,,,141,138,139,,141,141,139',
|
198
|
+
'139,141,,139,141,138,,139,139,138,138,139,141,138,139,,,138,138,103',
|
199
|
+
'103,138,139,103,138,103,,,,293,293,,138,293,,293,,,,137,137,103,,137',
|
200
|
+
',137,,,,,,293,103,,,,103,103,,,103,137,293,,103,103,293,293,103,,293',
|
201
|
+
'103,137,,293,293,137,137,293,103,137,293,,,137,137,136,136,137,293,136',
|
202
|
+
'137,136,,,,135,135,,137,135,,135,,,,109,109,136,,,,109,,,,,,135,136',
|
203
|
+
',,,136,136,,,136,,135,,136,136,135,135,136,,135,136,109,,135,135,109',
|
204
|
+
'109,135,136,109,135,,,109,,292,292,109,135,292,,292,,,,,,,109,,,,112',
|
205
|
+
'112,,,112,292,112,,,,,,,,,,292,,,,292,292,112,112,292,,,,292,292,,,292',
|
206
|
+
'112,,292,,112,112,,,112,,292,,112,112,,,112,113,113,112,,113,113,113',
|
207
|
+
',,,112,,,,,,,134,134,,,134,113,134,,,,,,,,,,113,,,,113,113,134,,113',
|
208
|
+
',,,113,113,,,113,134,,113,,134,134,,,134,,113,,134,134,133,133,134,',
|
209
|
+
'133,134,133,,,,117,117,,134,117,,117,,,,132,132,133,,132,,132,,,,,,117',
|
210
|
+
'133,,,,133,133,,,133,132,117,,133,133,117,117,133,,117,133,132,,117',
|
211
|
+
'117,132,132,117,133,132,117,,,132,132,68,68,132,117,68,132,68,,,116',
|
212
|
+
',,,132,,,,,116,116,,,68,,,,,116,116,116,116,,,68,,,,68,68,,,68,,,,68',
|
213
|
+
'68,,,68,116,116,68,,116,116,116,116,116,116,68,116,116,66,,,,,116,,',
|
214
|
+
',66,66,,,,,114,,,66,66,66,66,,,114,114,,,,,,,,114,114,114,114,,,,,66',
|
215
|
+
'66,,,66,66,66,66,66,66,,66,66,,,114,114,,66,114,114,114,114,114,114',
|
216
|
+
',114,114,170,170,,,,114,,,,170,170,170,170,,,131,131,,,,,,,131,131,131',
|
217
|
+
'131,131,,,,,170,170,,,170,170,170,170,170,170,,170,170,,,131,131,,170',
|
218
|
+
'131,131,131,131,131,131,,131,131,260,260,,,,131,,,,260,260,260,260,',
|
219
|
+
',355,355,,,,,,,,355,355,355,355,,,,,,260,,,260,260,260,260,260,260,',
|
220
|
+
'260,260,,,355,355,,260,355,355,355,355,355,355,,355,355,358,358,,,,355',
|
221
|
+
',,,358,358,358,358,,,349,349,,,,,,,,349,349,349,349,,,,,358,358,,,358',
|
222
|
+
'358,358,358,358,358,,358,358,,,,,,358,349,349,349,349,349,349,,349,349',
|
223
|
+
'348,348,,,,349,,,,348,348,348,348,,,341,341,,,,,,,,341,341,341,341,',
|
224
|
+
',,,,,,,348,348,348,348,348,348,,348,348,,,341,341,,348,341,341,341,341',
|
225
|
+
'341,341,,341,341,336,336,,,,341,,,,336,336,336,336,,,164,164,,,,,,,',
|
226
|
+
'164,164,164,164,,,,,336,336,,,336,336,336,336,336,336,,336,336,,,164',
|
227
|
+
'164,,336,164,164,164,164,164,164,,164,164,163,163,,,,164,,,,163,163',
|
228
|
+
'163,163,,,377,377,,,,,,,,377,377,377,377,,,,,163,163,,,163,163,163,163',
|
229
|
+
'163,163,,163,163,,,377,377,,163,377,377,377,377,377,377,,377,377,151',
|
230
|
+
'151,,,,377,,,,151,151,151,151,,,263,263,,,,,,,,263,263,263,263,,,,,151',
|
231
|
+
'151,265,,151,151,151,151,151,151,265,151,151,,,,,264,151,263,263,263',
|
232
|
+
'263,263,263,264,263,263,,,,,,263,,267,,265,265,265,265,265,265,267,265',
|
233
|
+
'265,,,,,261,265,264,264,264,264,264,264,261,264,264,,,,,,264,,,,267',
|
234
|
+
'267,267,267,267,267,,267,267,,,,,,267,261,261,261,261,261,261,,261,261',
|
235
|
+
'107,107,107,107,107,261,107,107,107,107,107,,107,107,,,,,,107,107,107',
|
236
|
+
'306,306,306,306,306,,306,306,306,306,306,,306,306,,107,107,,,306,306',
|
237
|
+
'306,105,105,105,105,105,,105,105,105,105,105,,105,105,,306,306,,,105',
|
238
|
+
'105,105,302,302,302,302,302,,302,302,302,302,302,,302,302,,105,105,',
|
239
|
+
',302,302,302,326,326,326,326,326,,326,326,326,326,326,,326,326,,302',
|
240
|
+
'302,,,326,326,326,188,188,188,188,188,,188,188,188,188,188,,188,188',
|
241
|
+
',326,326,,,188,188,188,259,259,259,259,259,259,,259,259,,,,,,259,188',
|
242
|
+
'188,268,268,268,268,268,268,,268,268,,,,,,268' ]
|
243
|
+
racc_action_check = arr = ::Array.new(2419, nil)
|
230
244
|
idx = 0
|
231
245
|
clist.each do |str|
|
232
246
|
str.split(',', -1).each do |i|
|
@@ -236,509 +250,534 @@ clist = [
|
|
236
250
|
end
|
237
251
|
|
238
252
|
racc_action_pointer = [
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
nil,
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
nil,
|
252
|
-
nil,
|
253
|
-
|
254
|
-
|
255
|
-
nil, nil,
|
256
|
-
nil, nil,
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
nil,
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
nil,
|
274
|
-
|
275
|
-
|
276
|
-
|
253
|
+
-2, 227, 494, nil, 428, 434, nil, nil, 523, nil,
|
254
|
+
178, 489, -23, 777, 124, nil, 733, nil, nil, nil,
|
255
|
+
512, 199, 171, 1, 487, nil, 385, nil, 463, nil,
|
256
|
+
462, nil, nil, nil, nil, 481, 458, nil, nil, nil,
|
257
|
+
543, nil, nil, nil, 590, 472, nil, 556, 467, nil,
|
258
|
+
454, nil, nil, nil, nil, 432, nil, nil, 533, nil,
|
259
|
+
nil, nil, nil, nil, 445, 720, 1692, 426, 1635, 422,
|
260
|
+
nil, -2, 844, 421, 410, -1, nil, 391, 98, 379,
|
261
|
+
nil, 375, 388, 1035, 1045, 1055, 1102, 366, -2, nil,
|
262
|
+
1169, 1179, 373, nil, nil, -2, nil, nil, nil, nil,
|
263
|
+
363, nil, 244, 1303, 347, 2269, 151, 2225, nil, 1390,
|
264
|
+
335, nil, 1454, 1504, 1707, nil, 1638, 1578, 331, nil,
|
265
|
+
nil, 299, 332, 278, nil, nil, nil, nil, nil, 126,
|
266
|
+
nil, 1767, 1588, 1568, 1521, 1380, 1370, 1323, 1256, 1246,
|
267
|
+
246, 1236, 1189, 1112, 244, 978, 921, 256, 911, 901,
|
268
|
+
nil, 2112, nil, 169, 834, 787, -1, nil, 286, nil,
|
269
|
+
nil, nil, nil, 2052, 2007, 660, 213, 610, nil, nil,
|
270
|
+
1752, nil, nil, 142, 27, 236, nil, -6, nil, 116,
|
271
|
+
nil, nil, nil, nil, 277, nil, nil, 401, 2335, nil,
|
272
|
+
nil, nil, nil, 210, nil, nil, nil, nil, 179, nil,
|
273
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
274
|
+
41, nil, 171, nil, nil, 116, nil, nil, nil, 147,
|
275
|
+
nil, nil, 124, 360, nil, 403, 120, 7, 385, 41,
|
276
|
+
59, 170, 131, 72, nil, 75, 52, 34, 378, 485,
|
277
|
+
514, nil, 281, 101, 511, nil, 524, 496, 471, 461,
|
278
|
+
416, 404, nil, nil, 216, 309, nil, 261, 615, 2334,
|
279
|
+
1812, 2193, nil, 2127, 2160, 2145, nil, 2178, 2351, 213,
|
280
|
+
220, nil, 298, 180, nil, 255, 730, nil, nil, 57,
|
281
|
+
428, 152, nil, 600, nil, 317, 75, nil, nil, nil,
|
282
|
+
nil, 342, 1437, 1313, 47, nil, nil, nil, 245, nil,
|
283
|
+
nil, 371, 2291, 382, 988, nil, 2247, 30, 968, 102,
|
284
|
+
nil, 261, nil, 394, 403, 246, 425, 44, 854, nil,
|
285
|
+
-6, nil, nil, nil, 439, 700, 2313, 443, 446, nil,
|
286
|
+
657, nil, 422, 434, nil, nil, 1992, nil, nil, nil,
|
287
|
+
nil, 1947, 428, nil, nil, nil, 468, nil, 1932, 1887,
|
288
|
+
nil, nil, 473, nil, nil, 1827, nil, nil, 1872, nil,
|
289
|
+
479, 231, 493, nil, 256, nil, 1122, 509, nil, nil,
|
290
|
+
317, 515, nil, nil, 515, nil, nil, 2067, nil, nil,
|
291
|
+
170, nil, nil, nil, nil, nil, nil, nil, 127, nil,
|
292
|
+
84, nil, nil, 531, nil, 532, nil, nil, nil ]
|
277
293
|
|
278
294
|
racc_action_default = [
|
279
|
-
-
|
280
|
-
-
|
281
|
-
|
282
|
-
|
283
|
-
-
|
284
|
-
|
285
|
-
-
|
286
|
-
-
|
287
|
-
-
|
288
|
-
|
289
|
-
-
|
290
|
-
-
|
291
|
-
-
|
292
|
-
|
293
|
-
-
|
294
|
-
-
|
295
|
-
|
296
|
-
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
-
|
302
|
-
-
|
303
|
-
-
|
304
|
-
-
|
305
|
-
-
|
306
|
-
-
|
307
|
-
-
|
308
|
-
-
|
309
|
-
-
|
310
|
-
-
|
311
|
-
|
312
|
-
-
|
313
|
-
|
314
|
-
|
315
|
-
-
|
316
|
-
-
|
295
|
+
-205, -240, -74, -19, -8, -20, -9, -185, -240, -124,
|
296
|
+
-220, -10, -197, -240, -238, -98, -240, -11, -176, -12,
|
297
|
+
-240, -240, -240, -177, -39, -13, -1, -181, -240, -129,
|
298
|
+
-41, -14, -2, -228, -96, -97, -42, -15, -3, -180,
|
299
|
+
-240, -43, -16, -182, -240, -45, -17, -6, -240, -184,
|
300
|
+
-240, -18, -7, -197, -196, -205, -75, -49, -240, -46,
|
301
|
+
-47, -48, -142, -141, -220, -240, -240, -238, -240, -59,
|
302
|
+
-66, -60, -240, -63, -61, -97, -64, -58, -240, -67,
|
303
|
+
-62, -68, -65, -240, -240, -240, -240, -205, -240, -125,
|
304
|
+
-240, -240, -240, -204, -202, -205, -198, -200, -201, -203,
|
305
|
+
-240, -73, -205, -240, -77, -109, -205, -119, -4, -240,
|
306
|
+
-53, -54, -240, -240, -240, -134, -240, -240, -189, -186,
|
307
|
+
-187, -109, -240, -206, -207, -40, -44, -37, -39, -97,
|
308
|
+
-38, -240, -240, -240, -240, -240, -240, -240, -240, -240,
|
309
|
+
-240, -240, -240, -240, -240, -240, -240, -240, -240, -240,
|
310
|
+
-159, -56, -223, -240, -240, -240, -240, -232, -240, -236,
|
311
|
+
-235, -231, -152, -106, -108, -240, -205, -240, -127, -126,
|
312
|
+
-107, -36, 399, -240, -240, -240, -214, -240, -220, -205,
|
313
|
+
-90, -89, -80, -97, -240, -81, -83, -240, -119, -25,
|
314
|
+
-29, -27, -113, -226, -35, -23, -110, -31, -240, -33,
|
315
|
+
-32, -114, -21, -112, -34, -28, -26, -22, -30, -24,
|
316
|
+
-240, -117, -226, -118, -120, -112, -183, -177, -179, -240,
|
317
|
+
-178, -170, -97, -240, -171, -240, -52, -240, -240, -240,
|
318
|
+
-240, -240, -240, -94, -92, -240, -226, -100, -101, -114,
|
319
|
+
-103, -104, -99, -97, -34, -102, -105, -24, -240, -213,
|
320
|
+
-240, -226, -210, -162, -149, -148, -143, -150, -151, -154,
|
321
|
+
-161, -156, -144, -160, -158, -155, -145, -157, -153, -5,
|
322
|
+
-240, -133, -146, -147, -224, -225, -240, -221, -123, -240,
|
323
|
+
-240, -240, -229, -240, -237, -240, -240, -216, -128, -199,
|
324
|
+
-215, -240, -240, -240, -240, -78, -86, -85, -240, -225,
|
325
|
+
-131, -226, -227, -240, -240, -79, -227, -240, -240, -240,
|
326
|
+
-173, -226, -55, -225, -50, -221, -240, -137, -240, -164,
|
327
|
+
-240, -168, -239, -188, -240, -95, -109, -240, -240, -191,
|
328
|
+
-240, -208, -227, -240, -132, -222, -57, -122, -130, -233,
|
329
|
+
-230, -234, -240, -219, -218, -217, -240, -195, -87, -88,
|
330
|
+
-84, -82, -240, -111, -71, -115, -121, -72, -116, -175,
|
331
|
+
-225, -240, -240, -51, -137, -136, -240, -240, -165, -163,
|
332
|
+
-240, -240, -69, -93, -226, -70, -190, -212, -211, -209,
|
333
|
+
-240, -193, -194, -76, -174, -172, -135, -138, -240, -169,
|
334
|
+
-240, -91, -192, -240, -140, -240, -167, -139, -166 ]
|
317
335
|
|
318
336
|
racc_goto_table = [
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
nil,
|
337
|
-
nil,
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
nil,
|
343
|
-
nil, nil, nil,
|
344
|
-
nil,
|
345
|
-
|
346
|
-
nil, nil,
|
347
|
-
nil, nil,
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
nil, nil, nil,
|
352
|
-
|
353
|
-
|
354
|
-
nil, nil, nil,
|
355
|
-
|
356
|
-
nil,
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
nil,
|
361
|
-
|
362
|
-
|
363
|
-
nil,
|
364
|
-
nil,
|
365
|
-
nil,
|
366
|
-
|
367
|
-
nil,
|
368
|
-
nil, nil, nil,
|
369
|
-
nil,
|
370
|
-
nil,
|
371
|
-
nil, nil, nil,
|
372
|
-
nil, nil, nil,
|
373
|
-
nil,
|
374
|
-
nil, nil, nil, nil, nil,
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
nil, nil, nil, 164, nil, nil, nil, nil, 165, 19,
|
379
|
-
132, 134, nil, nil, nil, 32, nil, nil, 19, nil,
|
380
|
-
nil, 176, nil, 22, nil, nil, nil, 144, nil, 22,
|
381
|
-
nil, 22, 202, nil, nil, nil, nil, nil, nil, nil,
|
382
|
-
nil, nil, nil, nil, nil, 32, nil, nil, nil, nil,
|
383
|
-
nil, 32, nil, 32, nil, nil, nil, nil, nil, nil,
|
337
|
+
23, 26, 55, 27, 115, 111, 224, 252, 234, 108,
|
338
|
+
157, 241, 120, 87, 39, 193, 219, 89, 270, 153,
|
339
|
+
184, 32, 100, 96, 210, 211, 23, 319, 303, 27,
|
340
|
+
101, 236, 93, 212, 104, 365, 125, 58, 318, 356,
|
341
|
+
39, 127, 126, 351, 14, 122, 221, 307, 91, 169,
|
342
|
+
187, 311, 324, 45, 118, 233, 285, 95, 23, 227,
|
343
|
+
228, 27, 175, 361, 290, 250, 130, 18, 251, 125,
|
344
|
+
14, 327, 39, 110, 171, 126, 124, 166, 345, 45,
|
345
|
+
156, 43, 386, 20, nil, nil, 333, nil, nil, nil,
|
346
|
+
nil, 23, nil, 18, 27, nil, nil, 294, nil, 130,
|
347
|
+
316, 279, 280, nil, nil, 39, 211, 43, 124, 217,
|
348
|
+
nil, 45, 27, nil, 301, 368, 176, nil, nil, 328,
|
349
|
+
310, 238, nil, 39, 27, 18, nil, nil, 41, nil,
|
350
|
+
219, 24, nil, nil, nil, 39, 352, 321, nil, 43,
|
351
|
+
nil, nil, nil, nil, 45, nil, 362, 23, nil, nil,
|
352
|
+
27, 262, nil, 216, 41, 266, nil, 24, 18, nil,
|
353
|
+
nil, 39, 346, nil, nil, nil, nil, nil, nil, 180,
|
354
|
+
nil, 288, 43, 180, 246, 289, 18, nil, nil, nil,
|
355
|
+
nil, nil, nil, nil, 93, 93, 41, 287, 237, 128,
|
356
|
+
43, 14, nil, nil, nil, 312, 323, nil, nil, nil,
|
357
|
+
45, nil, 43, nil, nil, nil, nil, nil, nil, 391,
|
358
|
+
nil, nil, 373, 339, 18, 241, 378, nil, nil, 41,
|
359
|
+
353, nil, 128, 217, 211, 321, 27, nil, 43, 23,
|
360
|
+
217, nil, 27, 27, nil, nil, 374, 39, nil, nil,
|
361
|
+
nil, nil, nil, 39, 39, nil, 180, nil, 23, 245,
|
362
|
+
nil, 27, 108, nil, nil, nil, nil, nil, 384, 393,
|
363
|
+
nil, 395, 39, nil, nil, nil, nil, 216, 219, 23,
|
364
|
+
nil, nil, 27, 14, 216, 41, nil, 389, 24, 359,
|
365
|
+
nil, nil, 45, 39, nil, nil, nil, 344, nil, nil,
|
366
|
+
18, 23, 14, nil, 27, nil, 18, 18, nil, nil,
|
367
|
+
nil, 45, nil, nil, 43, 39, nil, nil, nil, nil,
|
368
|
+
43, 43, nil, 14, nil, 18, nil, nil, 217, nil,
|
369
|
+
nil, 27, 45, nil, nil, 238, nil, nil, 27, 43,
|
370
|
+
387, nil, 39, nil, nil, 14, 18, nil, nil, 39,
|
371
|
+
nil, nil, 23, 380, 45, 27, nil, nil, nil, nil,
|
372
|
+
43, nil, nil, nil, nil, nil, 39, 41, 18, nil,
|
373
|
+
24, 217, 216, 108, 27, 180, nil, nil, nil, nil,
|
374
|
+
217, nil, 43, 27, nil, 39, 41, 30, 246, 24,
|
375
|
+
23, 36, nil, 27, 39, 18, 14, nil, 23, nil,
|
376
|
+
23, 27, 237, 27, 39, 45, nil, 41, nil, 43,
|
377
|
+
24, nil, 39, 30, 39, 216, 43, 36, nil, 18,
|
378
|
+
nil, nil, nil, nil, 216, nil, nil, nil, nil, 41,
|
379
|
+
nil, nil, 24, 43, 14, nil, nil, nil, 18, nil,
|
380
|
+
nil, nil, 14, 45, 14, 30, nil, 18, nil, 36,
|
381
|
+
nil, 45, 43, 45, nil, nil, nil, 18, nil, nil,
|
382
|
+
nil, 43, nil, 245, nil, 18, nil, 18, nil, 159,
|
383
|
+
nil, 43, nil, nil, nil, nil, nil, nil, 30, 43,
|
384
|
+
41, 43, 36, 24, nil, nil, nil, nil, nil, 181,
|
385
|
+
nil, nil, nil, 181, nil, nil, 218, nil, nil, nil,
|
386
|
+
220, nil, nil, nil, nil, nil, nil, nil, 240, nil,
|
387
|
+
nil, nil, 242, nil, nil, nil, nil, 66, 41, nil,
|
388
|
+
nil, 24, 88, nil, nil, nil, 41, nil, 41, 24,
|
389
|
+
nil, 24, nil, nil, 30, nil, nil, nil, 36, nil,
|
390
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, 114,
|
391
|
+
nil, nil, nil, 116, nil, nil, nil, nil, nil, nil,
|
392
|
+
nil, nil, nil, nil, nil, nil, 181, nil, nil, nil,
|
393
|
+
nil, nil, nil, nil, 131, nil, nil, 150, nil, nil,
|
394
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
395
|
+
nil, nil, 162, 163, 164, 165, nil, nil, nil, 170,
|
384
396
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
nil, nil,
|
392
|
-
nil, nil, nil, nil,
|
393
|
-
nil, nil, nil, nil, 19, nil, 19, nil, nil, nil,
|
394
|
-
nil, nil, nil, nil, 315, 316, nil, nil, 318, nil,
|
395
|
-
nil, 319, nil, nil, nil, nil, nil, 324, nil, nil,
|
396
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, 334,
|
397
|
+
218, nil, nil, nil, 220, nil, 30, 218, nil, nil,
|
398
|
+
36, 220, nil, nil, nil, nil, 231, nil, nil, nil,
|
399
|
+
nil, nil, nil, nil, nil, 30, nil, nil, nil, 36,
|
400
|
+
nil, 254, 255, 256, 257, 258, 259, 260, 261, nil,
|
401
|
+
263, 264, 265, nil, 267, 268, 30, 272, 273, nil,
|
402
|
+
36, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
403
|
+
nil, nil, 159, nil, nil, nil, 88, nil, 30, nil,
|
404
|
+
nil, nil, 36, nil, nil, 181, nil, nil, nil, nil,
|
397
405
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
406
|
+
nil, nil, nil, nil, nil, 218, nil, nil, nil, 220,
|
407
|
+
nil, nil, 240, nil, nil, nil, 242, nil, nil, nil,
|
408
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, 30,
|
409
|
+
nil, nil, nil, 36, nil, nil, nil, nil, nil, nil,
|
410
|
+
nil, nil, nil, nil, nil, nil, nil, nil, 218, nil,
|
411
|
+
nil, nil, 220, nil, nil, nil, nil, 218, nil, nil,
|
412
|
+
nil, 220, nil, nil, nil, nil, nil, 30, nil, nil,
|
413
|
+
nil, 36, nil, nil, nil, 30, nil, 30, nil, 36,
|
414
|
+
nil, 36, nil, nil, nil, 336, nil, nil, nil, nil,
|
415
|
+
nil, nil, 341, nil, nil, nil, nil, nil, nil, nil,
|
416
|
+
nil, 348, 349, nil, nil, nil, nil, nil, nil, nil,
|
417
|
+
nil, nil, nil, 355, nil, nil, nil, 358, nil, nil,
|
398
418
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
419
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, 377,
|
399
420
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
400
|
-
nil, nil, nil, nil, nil, nil, nil, nil, 350, nil,
|
401
|
-
nil, nil, 353, nil, nil, nil, nil, nil, nil, nil,
|
402
421
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
403
422
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
404
|
-
nil, nil, nil, nil, nil,
|
423
|
+
nil, nil, nil, nil, nil, 114 ]
|
405
424
|
|
406
425
|
racc_goto_check = [
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
nil, nil,
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
nil,
|
425
|
-
nil,
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
nil,
|
431
|
-
nil, nil, nil,
|
432
|
-
nil,
|
433
|
-
|
434
|
-
nil, nil,
|
435
|
-
nil, nil,
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
nil,
|
440
|
-
|
441
|
-
|
442
|
-
nil, nil, nil,
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
nil,
|
449
|
-
|
450
|
-
|
451
|
-
nil,
|
452
|
-
nil,
|
453
|
-
nil,
|
454
|
-
|
455
|
-
nil,
|
456
|
-
nil, nil, nil,
|
457
|
-
nil,
|
458
|
-
nil,
|
459
|
-
nil, nil, nil,
|
460
|
-
nil, nil, nil,
|
461
|
-
nil,
|
462
|
-
nil, nil, nil, nil, nil,
|
463
|
-
|
464
|
-
30, 26, nil, nil, nil, nil, nil, nil, 30, 30,
|
465
|
-
30, nil, nil, 24, nil, nil, nil, nil, nil, nil,
|
466
|
-
nil, nil, nil, 30, nil, nil, nil, nil, 30, 23,
|
467
|
-
23, 24, nil, nil, nil, 26, nil, nil, 23, nil,
|
468
|
-
nil, 30, nil, 24, nil, nil, nil, 23, nil, 24,
|
469
|
-
nil, 24, 30, nil, nil, nil, nil, nil, nil, nil,
|
470
|
-
nil, nil, nil, nil, nil, 26, nil, nil, nil, nil,
|
471
|
-
nil, 26, nil, 26, nil, nil, nil, nil, nil, nil,
|
426
|
+
35, 2, 40, 36, 62, 31, 71, 83, 53, 4,
|
427
|
+
86, 37, 73, 40, 38, 43, 69, 60, 5, 29,
|
428
|
+
48, 3, 35, 79, 48, 56, 35, 67, 44, 36,
|
429
|
+
6, 43, 65, 45, 47, 63, 8, 23, 66, 59,
|
430
|
+
38, 22, 10, 49, 55, 75, 70, 44, 23, 61,
|
431
|
+
29, 72, 42, 28, 74, 41, 76, 77, 35, 29,
|
432
|
+
29, 36, 78, 33, 80, 81, 6, 34, 82, 8,
|
433
|
+
55, 44, 38, 30, 22, 10, 3, 75, 84, 28,
|
434
|
+
85, 39, 63, 1, nil, nil, 44, nil, nil, nil,
|
435
|
+
nil, 35, nil, 34, 36, nil, nil, 48, nil, 6,
|
436
|
+
5, 29, 29, nil, nil, 38, 56, 39, 3, 35,
|
437
|
+
nil, 28, 36, nil, 45, 67, 3, nil, nil, 5,
|
438
|
+
71, 35, nil, 38, 36, 34, nil, nil, 27, nil,
|
439
|
+
69, 24, nil, nil, nil, 38, 44, 69, nil, 39,
|
440
|
+
nil, nil, nil, nil, 28, nil, 44, 35, nil, nil,
|
441
|
+
36, 65, nil, 55, 27, 65, nil, 24, 34, nil,
|
442
|
+
nil, 38, 5, nil, nil, nil, nil, nil, nil, 34,
|
443
|
+
nil, 60, 39, 34, 28, 79, 34, nil, nil, nil,
|
444
|
+
nil, nil, nil, nil, 65, 65, 27, 3, 34, 24,
|
445
|
+
39, 55, nil, nil, nil, 31, 73, nil, nil, nil,
|
446
|
+
28, nil, 39, nil, nil, nil, nil, nil, nil, 44,
|
447
|
+
nil, nil, 53, 86, 34, 37, 83, nil, nil, 27,
|
448
|
+
56, nil, 24, 35, 56, 69, 36, nil, 39, 35,
|
449
|
+
35, nil, 36, 36, nil, nil, 43, 38, nil, nil,
|
450
|
+
nil, nil, nil, 38, 38, nil, 34, nil, 35, 27,
|
451
|
+
nil, 36, 4, nil, nil, nil, nil, nil, 71, 5,
|
452
|
+
nil, 5, 38, nil, nil, nil, nil, 55, 69, 35,
|
453
|
+
nil, nil, 36, 55, 55, 27, nil, 69, 24, 31,
|
454
|
+
nil, nil, 28, 38, nil, nil, nil, 40, nil, nil,
|
455
|
+
34, 35, 55, nil, 36, nil, 34, 34, nil, nil,
|
456
|
+
nil, 28, nil, nil, 39, 38, nil, nil, nil, nil,
|
457
|
+
39, 39, nil, 55, nil, 34, nil, nil, 35, nil,
|
458
|
+
nil, 36, 28, nil, nil, 35, nil, nil, 36, 39,
|
459
|
+
62, nil, 38, nil, nil, 55, 34, nil, nil, 38,
|
460
|
+
nil, nil, 35, 2, 28, 36, nil, nil, nil, nil,
|
461
|
+
39, nil, nil, nil, nil, nil, 38, 27, 34, nil,
|
462
|
+
24, 35, 55, 4, 36, 34, nil, nil, nil, nil,
|
463
|
+
35, nil, 39, 36, nil, 38, 27, 25, 28, 24,
|
464
|
+
35, 26, nil, 36, 38, 34, 55, nil, 35, nil,
|
465
|
+
35, 36, 34, 36, 38, 28, nil, 27, nil, 39,
|
466
|
+
24, nil, 38, 25, 38, 55, 39, 26, nil, 34,
|
467
|
+
nil, nil, nil, nil, 55, nil, nil, nil, nil, 27,
|
468
|
+
nil, nil, 24, 39, 55, nil, nil, nil, 34, nil,
|
469
|
+
nil, nil, 55, 28, 55, 25, nil, 34, nil, 26,
|
470
|
+
nil, 28, 39, 28, nil, nil, nil, 34, nil, nil,
|
471
|
+
nil, 39, nil, 27, nil, 34, nil, 34, nil, 26,
|
472
|
+
nil, 39, nil, nil, nil, nil, nil, nil, 25, 39,
|
473
|
+
27, 39, 26, 24, nil, nil, nil, nil, nil, 25,
|
474
|
+
nil, nil, nil, 25, nil, nil, 25, nil, nil, nil,
|
475
|
+
26, nil, nil, nil, nil, nil, nil, nil, 25, nil,
|
476
|
+
nil, nil, 26, nil, nil, nil, nil, 32, 27, nil,
|
477
|
+
nil, 24, 32, nil, nil, nil, 27, nil, 27, 24,
|
478
|
+
nil, 24, nil, nil, 25, nil, nil, nil, 26, nil,
|
479
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, 32,
|
480
|
+
nil, nil, nil, 32, nil, nil, nil, nil, nil, nil,
|
481
|
+
nil, nil, nil, nil, nil, nil, 25, nil, nil, nil,
|
482
|
+
nil, nil, nil, nil, 32, nil, nil, 32, nil, nil,
|
472
483
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
473
|
-
nil, nil,
|
474
|
-
nil, nil, nil, nil,
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
nil, nil, nil, nil, nil, nil, nil, nil,
|
481
|
-
nil, nil, nil, nil,
|
482
|
-
nil, nil, nil, nil,
|
483
|
-
nil, 30, nil, nil, nil, nil, nil, 30, nil, nil,
|
484
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, 30,
|
484
|
+
nil, nil, 32, 32, 32, 32, nil, nil, nil, 32,
|
485
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
486
|
+
25, nil, nil, nil, 26, nil, 25, 25, nil, nil,
|
487
|
+
26, 26, nil, nil, nil, nil, 32, nil, nil, nil,
|
488
|
+
nil, nil, nil, nil, nil, 25, nil, nil, nil, 26,
|
489
|
+
nil, 32, 32, 32, 32, 32, 32, 32, 32, nil,
|
490
|
+
32, 32, 32, nil, 32, 32, 25, 32, 32, nil,
|
491
|
+
26, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
492
|
+
nil, nil, 26, nil, nil, nil, 32, nil, 25, nil,
|
493
|
+
nil, nil, 26, nil, nil, 25, nil, nil, nil, nil,
|
485
494
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
495
|
+
nil, nil, nil, nil, nil, 25, nil, nil, nil, 26,
|
496
|
+
nil, nil, 25, nil, nil, nil, 26, nil, nil, nil,
|
497
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, 25,
|
498
|
+
nil, nil, nil, 26, nil, nil, nil, nil, nil, nil,
|
499
|
+
nil, nil, nil, nil, nil, nil, nil, nil, 25, nil,
|
500
|
+
nil, nil, 26, nil, nil, nil, nil, 25, nil, nil,
|
501
|
+
nil, 26, nil, nil, nil, nil, nil, 25, nil, nil,
|
502
|
+
nil, 26, nil, nil, nil, 25, nil, 25, nil, 26,
|
503
|
+
nil, 26, nil, nil, nil, 32, nil, nil, nil, nil,
|
504
|
+
nil, nil, 32, nil, nil, nil, nil, nil, nil, nil,
|
505
|
+
nil, 32, 32, nil, nil, nil, nil, nil, nil, nil,
|
506
|
+
nil, nil, nil, 32, nil, nil, nil, 32, nil, nil,
|
486
507
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
508
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, 32,
|
487
509
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
488
|
-
nil, nil, nil, nil, nil, nil, nil, nil, 30, nil,
|
489
|
-
nil, nil, 30, nil, nil, nil, nil, nil, nil, nil,
|
490
510
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
491
511
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
492
|
-
nil, nil, nil, nil, nil,
|
512
|
+
nil, nil, nil, nil, nil, 32 ]
|
493
513
|
|
494
514
|
racc_goto_pointer = [
|
495
|
-
nil,
|
496
|
-
-
|
497
|
-
-
|
498
|
-
|
499
|
-
-
|
500
|
-
nil,
|
501
|
-
-
|
502
|
-
-
|
503
|
-
-
|
515
|
+
nil, 83, 1, 21, -17, -129, 8, nil, -22, nil,
|
516
|
+
-16, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
517
|
+
nil, nil, -17, 32, 131, 377, 381, 128, 53, -53,
|
518
|
+
38, -30, 499, -248, 67, 0, 3, -110, 14, 81,
|
519
|
+
1, -66, -181, -90, -165, -74, nil, 11, -82, -255,
|
520
|
+
nil, nil, nil, -113, nil, 44, -82, nil, nil, -267,
|
521
|
+
4, -39, -36, -282, nil, 11, -192, -203, nil, -93,
|
522
|
+
-63, -103, -172, -36, 6, -10, -110, 36, -33, 2,
|
523
|
+
-110, -58, -55, -116, -208, 2, -68, nil ]
|
504
524
|
|
505
525
|
racc_goto_default = [
|
506
|
-
nil, nil,
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
nil, nil, nil, nil,
|
511
|
-
|
512
|
-
nil,
|
513
|
-
nil, nil, nil, nil, nil, nil, nil,
|
514
|
-
nil, nil, nil, nil,
|
526
|
+
nil, nil, 269, 182, 38, nil, 47, 52, 4, 6,
|
527
|
+
11, 17, 19, 25, 31, 37, 42, 46, 51, 3,
|
528
|
+
5, 192, 16, nil, 70, 73, 77, 80, 82, nil,
|
529
|
+
nil, 63, 151, 276, 69, 71, 74, 76, 79, 81,
|
530
|
+
50, nil, nil, nil, nil, nil, 22, nil, nil, 185,
|
531
|
+
298, 186, 177, nil, 235, 67, 196, 198, 213, 214,
|
532
|
+
nil, nil, nil, nil, 62, 7, nil, nil, 320, 28,
|
533
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
534
|
+
97, nil, nil, nil, nil, nil, nil, 158 ]
|
515
535
|
|
516
536
|
racc_reduce_table = [
|
517
537
|
0, 0, :racc_error,
|
518
|
-
1,
|
519
|
-
1,
|
520
|
-
1,
|
521
|
-
2,
|
522
|
-
1,
|
523
|
-
1,
|
524
|
-
1,
|
525
|
-
1,
|
526
|
-
1,
|
527
|
-
1,
|
528
|
-
1,
|
529
|
-
1,
|
530
|
-
1,
|
531
|
-
1,
|
532
|
-
1,
|
533
|
-
1,
|
534
|
-
1,
|
535
|
-
1,
|
536
|
-
1,
|
537
|
-
|
538
|
-
|
539
|
-
1,
|
540
|
-
1,
|
541
|
-
1,
|
542
|
-
1,
|
543
|
-
1,
|
544
|
-
1,
|
545
|
-
1,
|
546
|
-
1,
|
547
|
-
1,
|
548
|
-
1,
|
549
|
-
1,
|
550
|
-
1,
|
551
|
-
|
552
|
-
|
553
|
-
3,
|
554
|
-
|
555
|
-
1,
|
556
|
-
|
557
|
-
1,
|
558
|
-
|
559
|
-
1,
|
560
|
-
1,
|
561
|
-
1,
|
562
|
-
1,
|
563
|
-
1,
|
564
|
-
1,
|
565
|
-
1,
|
566
|
-
1,
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
1,
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
1,
|
582
|
-
1,
|
583
|
-
|
584
|
-
1,
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
538
|
+
1, 70, :_reduce_none,
|
539
|
+
1, 70, :_reduce_none,
|
540
|
+
1, 71, :_reduce_3,
|
541
|
+
2, 71, :_reduce_4,
|
542
|
+
1, 74, :_reduce_5,
|
543
|
+
1, 73, :_reduce_none,
|
544
|
+
1, 73, :_reduce_none,
|
545
|
+
1, 73, :_reduce_none,
|
546
|
+
1, 73, :_reduce_none,
|
547
|
+
1, 73, :_reduce_none,
|
548
|
+
1, 73, :_reduce_none,
|
549
|
+
1, 73, :_reduce_none,
|
550
|
+
1, 73, :_reduce_none,
|
551
|
+
1, 73, :_reduce_none,
|
552
|
+
1, 73, :_reduce_none,
|
553
|
+
1, 73, :_reduce_none,
|
554
|
+
1, 73, :_reduce_none,
|
555
|
+
1, 73, :_reduce_none,
|
556
|
+
1, 73, :_reduce_none,
|
557
|
+
1, 73, :_reduce_none,
|
558
|
+
1, 90, :_reduce_none,
|
559
|
+
1, 90, :_reduce_none,
|
560
|
+
1, 90, :_reduce_none,
|
561
|
+
1, 90, :_reduce_none,
|
562
|
+
1, 90, :_reduce_none,
|
563
|
+
1, 90, :_reduce_none,
|
564
|
+
1, 90, :_reduce_none,
|
565
|
+
1, 90, :_reduce_none,
|
566
|
+
1, 90, :_reduce_none,
|
567
|
+
1, 90, :_reduce_none,
|
568
|
+
1, 90, :_reduce_none,
|
569
|
+
1, 90, :_reduce_none,
|
570
|
+
1, 90, :_reduce_none,
|
571
|
+
1, 90, :_reduce_none,
|
572
|
+
1, 90, :_reduce_none,
|
573
|
+
3, 89, :_reduce_36,
|
574
|
+
3, 89, :_reduce_37,
|
575
|
+
1, 91, :_reduce_none,
|
576
|
+
1, 91, :_reduce_none,
|
577
|
+
1, 91, :_reduce_none,
|
578
|
+
1, 91, :_reduce_none,
|
579
|
+
1, 91, :_reduce_none,
|
580
|
+
1, 91, :_reduce_none,
|
581
|
+
1, 91, :_reduce_none,
|
582
|
+
1, 91, :_reduce_none,
|
583
|
+
1, 92, :_reduce_none,
|
584
|
+
1, 92, :_reduce_none,
|
585
|
+
1, 92, :_reduce_none,
|
586
|
+
1, 92, :_reduce_none,
|
587
|
+
4, 83, :_reduce_50,
|
588
|
+
5, 83, :_reduce_51,
|
589
|
+
3, 83, :_reduce_52,
|
590
|
+
2, 83, :_reduce_53,
|
591
|
+
1, 99, :_reduce_54,
|
592
|
+
3, 99, :_reduce_55,
|
593
|
+
1, 98, :_reduce_56,
|
594
|
+
3, 98, :_reduce_57,
|
595
|
+
1, 100, :_reduce_none,
|
596
|
+
1, 100, :_reduce_none,
|
597
|
+
1, 100, :_reduce_none,
|
598
|
+
1, 100, :_reduce_none,
|
599
|
+
1, 100, :_reduce_none,
|
600
|
+
1, 100, :_reduce_none,
|
601
|
+
1, 100, :_reduce_none,
|
602
|
+
1, 100, :_reduce_none,
|
603
|
+
1, 100, :_reduce_none,
|
604
|
+
1, 100, :_reduce_none,
|
605
|
+
1, 100, :_reduce_none,
|
606
|
+
5, 75, :_reduce_69,
|
607
|
+
5, 75, :_reduce_70,
|
608
|
+
5, 75, :_reduce_71,
|
609
|
+
5, 87, :_reduce_72,
|
610
|
+
2, 76, :_reduce_73,
|
611
|
+
1, 115, :_reduce_74,
|
612
|
+
2, 115, :_reduce_75,
|
613
|
+
6, 77, :_reduce_76,
|
614
|
+
2, 77, :_reduce_77,
|
615
|
+
3, 116, :_reduce_78,
|
616
|
+
3, 116, :_reduce_79,
|
617
|
+
1, 117, :_reduce_none,
|
618
|
+
1, 117, :_reduce_none,
|
619
|
+
3, 117, :_reduce_82,
|
591
620
|
1, 118, :_reduce_none,
|
592
|
-
|
593
|
-
1,
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
1,
|
598
|
-
1,
|
599
|
-
|
600
|
-
1,
|
601
|
-
|
602
|
-
|
603
|
-
1,
|
604
|
-
1,
|
605
|
-
1,
|
606
|
-
1,
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
1,
|
612
|
-
|
613
|
-
|
614
|
-
3,
|
615
|
-
|
616
|
-
|
617
|
-
0,
|
618
|
-
1,
|
619
|
-
3,
|
620
|
-
|
621
|
-
|
622
|
-
1,
|
623
|
-
|
624
|
-
|
625
|
-
1,
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
2,
|
635
|
-
|
636
|
-
|
637
|
-
1,
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
3,
|
652
|
-
3,
|
653
|
-
3,
|
654
|
-
3,
|
655
|
-
|
656
|
-
3,
|
657
|
-
3,
|
658
|
-
3,
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
3,
|
666
|
-
3,
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
3,
|
671
|
-
|
672
|
-
1,
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
1,
|
677
|
-
|
678
|
-
|
679
|
-
1, 134, :_reduce_none,
|
680
|
-
1, 134, :_reduce_163,
|
681
|
-
1, 134, :_reduce_none,
|
682
|
-
1, 138, :_reduce_165,
|
621
|
+
3, 118, :_reduce_84,
|
622
|
+
1, 119, :_reduce_85,
|
623
|
+
1, 119, :_reduce_86,
|
624
|
+
3, 120, :_reduce_87,
|
625
|
+
3, 120, :_reduce_88,
|
626
|
+
1, 121, :_reduce_none,
|
627
|
+
1, 121, :_reduce_none,
|
628
|
+
4, 122, :_reduce_91,
|
629
|
+
1, 110, :_reduce_92,
|
630
|
+
3, 110, :_reduce_93,
|
631
|
+
0, 111, :_reduce_none,
|
632
|
+
1, 111, :_reduce_none,
|
633
|
+
1, 108, :_reduce_96,
|
634
|
+
1, 103, :_reduce_97,
|
635
|
+
1, 104, :_reduce_98,
|
636
|
+
1, 123, :_reduce_none,
|
637
|
+
1, 123, :_reduce_none,
|
638
|
+
1, 123, :_reduce_none,
|
639
|
+
1, 123, :_reduce_none,
|
640
|
+
1, 123, :_reduce_none,
|
641
|
+
1, 123, :_reduce_none,
|
642
|
+
1, 123, :_reduce_none,
|
643
|
+
3, 78, :_reduce_106,
|
644
|
+
3, 78, :_reduce_107,
|
645
|
+
3, 88, :_reduce_108,
|
646
|
+
0, 112, :_reduce_109,
|
647
|
+
1, 112, :_reduce_110,
|
648
|
+
3, 112, :_reduce_111,
|
649
|
+
1, 126, :_reduce_none,
|
650
|
+
1, 126, :_reduce_none,
|
651
|
+
1, 126, :_reduce_none,
|
652
|
+
3, 125, :_reduce_115,
|
653
|
+
3, 127, :_reduce_116,
|
654
|
+
1, 128, :_reduce_none,
|
655
|
+
1, 128, :_reduce_none,
|
656
|
+
0, 114, :_reduce_119,
|
657
|
+
1, 114, :_reduce_120,
|
658
|
+
3, 114, :_reduce_121,
|
659
|
+
4, 107, :_reduce_122,
|
660
|
+
3, 107, :_reduce_123,
|
661
|
+
1, 95, :_reduce_124,
|
662
|
+
2, 95, :_reduce_125,
|
663
|
+
2, 129, :_reduce_126,
|
664
|
+
1, 130, :_reduce_127,
|
665
|
+
2, 130, :_reduce_128,
|
666
|
+
1, 105, :_reduce_129,
|
667
|
+
4, 93, :_reduce_130,
|
668
|
+
4, 93, :_reduce_131,
|
669
|
+
5, 81, :_reduce_132,
|
670
|
+
4, 81, :_reduce_133,
|
671
|
+
2, 80, :_reduce_134,
|
672
|
+
5, 131, :_reduce_135,
|
673
|
+
4, 131, :_reduce_136,
|
674
|
+
0, 132, :_reduce_none,
|
675
|
+
2, 132, :_reduce_138,
|
676
|
+
4, 132, :_reduce_139,
|
677
|
+
3, 132, :_reduce_140,
|
678
|
+
1, 101, :_reduce_none,
|
679
|
+
1, 101, :_reduce_none,
|
680
|
+
3, 101, :_reduce_143,
|
681
|
+
3, 101, :_reduce_144,
|
682
|
+
3, 101, :_reduce_145,
|
683
|
+
3, 101, :_reduce_146,
|
684
|
+
3, 101, :_reduce_147,
|
685
|
+
3, 101, :_reduce_148,
|
686
|
+
3, 101, :_reduce_149,
|
687
|
+
3, 101, :_reduce_150,
|
688
|
+
3, 101, :_reduce_151,
|
689
|
+
2, 101, :_reduce_152,
|
690
|
+
3, 101, :_reduce_153,
|
691
|
+
3, 101, :_reduce_154,
|
692
|
+
3, 101, :_reduce_155,
|
693
|
+
3, 101, :_reduce_156,
|
694
|
+
3, 101, :_reduce_157,
|
695
|
+
3, 101, :_reduce_158,
|
696
|
+
2, 101, :_reduce_159,
|
697
|
+
3, 101, :_reduce_160,
|
698
|
+
3, 101, :_reduce_161,
|
699
|
+
3, 101, :_reduce_162,
|
700
|
+
5, 79, :_reduce_163,
|
701
|
+
1, 135, :_reduce_164,
|
702
|
+
2, 135, :_reduce_165,
|
703
|
+
5, 136, :_reduce_166,
|
704
|
+
4, 136, :_reduce_167,
|
705
|
+
1, 137, :_reduce_168,
|
706
|
+
3, 137, :_reduce_169,
|
707
|
+
3, 96, :_reduce_170,
|
683
708
|
1, 139, :_reduce_none,
|
684
|
-
|
685
|
-
2, 80, :_reduce_168,
|
686
|
-
6, 82, :_reduce_169,
|
687
|
-
5, 82, :_reduce_170,
|
688
|
-
7, 83, :_reduce_171,
|
689
|
-
6, 83, :_reduce_172,
|
690
|
-
6, 84, :_reduce_173,
|
691
|
-
5, 84, :_reduce_174,
|
692
|
-
1, 106, :_reduce_175,
|
693
|
-
1, 106, :_reduce_176,
|
694
|
-
1, 142, :_reduce_177,
|
695
|
-
3, 142, :_reduce_178,
|
696
|
-
1, 144, :_reduce_179,
|
697
|
-
1, 145, :_reduce_180,
|
698
|
-
1, 145, :_reduce_181,
|
699
|
-
1, 145, :_reduce_182,
|
700
|
-
1, 145, :_reduce_none,
|
701
|
-
0, 71, :_reduce_184,
|
702
|
-
0, 146, :_reduce_185,
|
703
|
-
1, 140, :_reduce_none,
|
704
|
-
3, 140, :_reduce_187,
|
705
|
-
4, 140, :_reduce_188,
|
706
|
-
1, 147, :_reduce_none,
|
707
|
-
3, 147, :_reduce_190,
|
708
|
-
3, 148, :_reduce_191,
|
709
|
-
1, 148, :_reduce_192,
|
710
|
-
3, 148, :_reduce_193,
|
711
|
-
1, 148, :_reduce_194,
|
712
|
-
1, 143, :_reduce_none,
|
713
|
-
2, 143, :_reduce_196,
|
709
|
+
4, 139, :_reduce_172,
|
714
710
|
1, 141, :_reduce_none,
|
715
|
-
|
716
|
-
|
711
|
+
3, 141, :_reduce_174,
|
712
|
+
3, 140, :_reduce_175,
|
713
|
+
1, 138, :_reduce_none,
|
714
|
+
1, 138, :_reduce_none,
|
715
|
+
1, 138, :_reduce_none,
|
716
|
+
1, 138, :_reduce_none,
|
717
|
+
1, 138, :_reduce_none,
|
718
|
+
1, 138, :_reduce_none,
|
719
|
+
1, 138, :_reduce_none,
|
720
|
+
1, 138, :_reduce_none,
|
721
|
+
1, 138, :_reduce_184,
|
722
|
+
1, 138, :_reduce_none,
|
723
|
+
1, 142, :_reduce_186,
|
724
|
+
1, 143, :_reduce_none,
|
725
|
+
3, 143, :_reduce_188,
|
726
|
+
2, 82, :_reduce_189,
|
727
|
+
6, 84, :_reduce_190,
|
728
|
+
5, 84, :_reduce_191,
|
729
|
+
7, 85, :_reduce_192,
|
730
|
+
6, 85, :_reduce_193,
|
731
|
+
6, 86, :_reduce_194,
|
732
|
+
5, 86, :_reduce_195,
|
733
|
+
1, 109, :_reduce_196,
|
734
|
+
1, 109, :_reduce_197,
|
735
|
+
1, 146, :_reduce_198,
|
736
|
+
3, 146, :_reduce_199,
|
737
|
+
1, 148, :_reduce_200,
|
738
|
+
1, 149, :_reduce_201,
|
739
|
+
1, 149, :_reduce_202,
|
740
|
+
1, 149, :_reduce_203,
|
717
741
|
1, 149, :_reduce_none,
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
1,
|
724
|
-
|
725
|
-
|
726
|
-
1,
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
1,
|
734
|
-
|
735
|
-
4,
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
+
0, 72, :_reduce_205,
|
743
|
+
0, 150, :_reduce_206,
|
744
|
+
1, 144, :_reduce_none,
|
745
|
+
3, 144, :_reduce_208,
|
746
|
+
4, 144, :_reduce_209,
|
747
|
+
1, 151, :_reduce_none,
|
748
|
+
3, 151, :_reduce_211,
|
749
|
+
3, 152, :_reduce_212,
|
750
|
+
1, 152, :_reduce_213,
|
751
|
+
1, 147, :_reduce_none,
|
752
|
+
2, 147, :_reduce_215,
|
753
|
+
1, 145, :_reduce_none,
|
754
|
+
2, 145, :_reduce_217,
|
755
|
+
1, 153, :_reduce_none,
|
756
|
+
1, 153, :_reduce_none,
|
757
|
+
1, 94, :_reduce_220,
|
758
|
+
3, 106, :_reduce_221,
|
759
|
+
4, 106, :_reduce_222,
|
760
|
+
2, 106, :_reduce_223,
|
761
|
+
1, 102, :_reduce_none,
|
762
|
+
1, 102, :_reduce_none,
|
763
|
+
0, 113, :_reduce_none,
|
764
|
+
1, 113, :_reduce_227,
|
765
|
+
1, 134, :_reduce_228,
|
766
|
+
3, 133, :_reduce_229,
|
767
|
+
4, 133, :_reduce_230,
|
768
|
+
2, 133, :_reduce_231,
|
769
|
+
1, 154, :_reduce_none,
|
770
|
+
3, 154, :_reduce_233,
|
771
|
+
3, 155, :_reduce_234,
|
772
|
+
1, 156, :_reduce_235,
|
773
|
+
1, 156, :_reduce_236,
|
774
|
+
4, 124, :_reduce_237,
|
775
|
+
1, 97, :_reduce_none,
|
776
|
+
4, 97, :_reduce_239 ]
|
777
|
+
|
778
|
+
racc_reduce_n = 240
|
779
|
+
|
780
|
+
racc_shift_n = 399
|
742
781
|
|
743
782
|
racc_token_table = {
|
744
783
|
false => 0,
|
@@ -808,9 +847,10 @@ racc_token_table = {
|
|
808
847
|
:OUT_EDGE => 64,
|
809
848
|
:IN_EDGE_SUB => 65,
|
810
849
|
:OUT_EDGE_SUB => 66,
|
811
|
-
:IN => 67
|
850
|
+
:IN => 67,
|
851
|
+
:UNLESS => 68 }
|
812
852
|
|
813
|
-
racc_nt_base =
|
853
|
+
racc_nt_base = 69
|
814
854
|
|
815
855
|
racc_use_result_var = true
|
816
856
|
|
@@ -899,6 +939,7 @@ Racc_token_to_s_table = [
|
|
899
939
|
"IN_EDGE_SUB",
|
900
940
|
"OUT_EDGE_SUB",
|
901
941
|
"IN",
|
942
|
+
"UNLESS",
|
902
943
|
"$start",
|
903
944
|
"program",
|
904
945
|
"statements_and_declarations",
|
@@ -911,6 +952,7 @@ Racc_token_to_s_table = [
|
|
911
952
|
"assignment",
|
912
953
|
"casestatement",
|
913
954
|
"ifstatement_begin",
|
955
|
+
"unlessstatement",
|
914
956
|
"import",
|
915
957
|
"fstatement",
|
916
958
|
"definition",
|
@@ -919,6 +961,7 @@ Racc_token_to_s_table = [
|
|
919
961
|
"resourceoverride",
|
920
962
|
"append",
|
921
963
|
"relationship",
|
964
|
+
"keyword",
|
922
965
|
"relationship_side",
|
923
966
|
"edge",
|
924
967
|
"resourceref",
|
@@ -954,6 +997,7 @@ Racc_token_to_s_table = [
|
|
954
997
|
"resourcename",
|
955
998
|
"hasharrayaccess",
|
956
999
|
"param",
|
1000
|
+
"param_name",
|
957
1001
|
"addparam",
|
958
1002
|
"anyparam",
|
959
1003
|
"dqrval",
|
@@ -1056,21 +1100,9 @@ module_eval(<<'.,.,', 'grammar.ra', 46)
|
|
1056
1100
|
|
1057
1101
|
# reduce 19 omitted
|
1058
1102
|
|
1059
|
-
|
1060
|
-
def _reduce_20(val, _values, result)
|
1061
|
-
result = AST::Relationship.new(val[0], val[2], val[1][:value], ast_context)
|
1062
|
-
|
1063
|
-
result
|
1064
|
-
end
|
1065
|
-
.,.,
|
1066
|
-
|
1067
|
-
module_eval(<<'.,.,', 'grammar.ra', 75)
|
1068
|
-
def _reduce_21(val, _values, result)
|
1069
|
-
result = AST::Relationship.new(val[0], val[2], val[1][:value], ast_context)
|
1103
|
+
# reduce 20 omitted
|
1070
1104
|
|
1071
|
-
|
1072
|
-
end
|
1073
|
-
.,.,
|
1105
|
+
# reduce 21 omitted
|
1074
1106
|
|
1075
1107
|
# reduce 22 omitted
|
1076
1108
|
|
@@ -1096,8 +1128,52 @@ module_eval(<<'.,.,', 'grammar.ra', 75)
|
|
1096
1128
|
|
1097
1129
|
# reduce 33 omitted
|
1098
1130
|
|
1099
|
-
|
1100
|
-
|
1131
|
+
# reduce 34 omitted
|
1132
|
+
|
1133
|
+
# reduce 35 omitted
|
1134
|
+
|
1135
|
+
module_eval(<<'.,.,', 'grammar.ra', 89)
|
1136
|
+
def _reduce_36(val, _values, result)
|
1137
|
+
result = AST::Relationship.new(val[0], val[2], val[1][:value], ast_context)
|
1138
|
+
|
1139
|
+
result
|
1140
|
+
end
|
1141
|
+
.,.,
|
1142
|
+
|
1143
|
+
module_eval(<<'.,.,', 'grammar.ra', 92)
|
1144
|
+
def _reduce_37(val, _values, result)
|
1145
|
+
result = AST::Relationship.new(val[0], val[2], val[1][:value], ast_context)
|
1146
|
+
|
1147
|
+
result
|
1148
|
+
end
|
1149
|
+
.,.,
|
1150
|
+
|
1151
|
+
# reduce 38 omitted
|
1152
|
+
|
1153
|
+
# reduce 39 omitted
|
1154
|
+
|
1155
|
+
# reduce 40 omitted
|
1156
|
+
|
1157
|
+
# reduce 41 omitted
|
1158
|
+
|
1159
|
+
# reduce 42 omitted
|
1160
|
+
|
1161
|
+
# reduce 43 omitted
|
1162
|
+
|
1163
|
+
# reduce 44 omitted
|
1164
|
+
|
1165
|
+
# reduce 45 omitted
|
1166
|
+
|
1167
|
+
# reduce 46 omitted
|
1168
|
+
|
1169
|
+
# reduce 47 omitted
|
1170
|
+
|
1171
|
+
# reduce 48 omitted
|
1172
|
+
|
1173
|
+
# reduce 49 omitted
|
1174
|
+
|
1175
|
+
module_eval(<<'.,.,', 'grammar.ra', 107)
|
1176
|
+
def _reduce_50(val, _values, result)
|
1101
1177
|
result = ast AST::Function,
|
1102
1178
|
:name => val[0][:value],
|
1103
1179
|
:line => val[0][:line],
|
@@ -1108,8 +1184,8 @@ module_eval(<<'.,.,', 'grammar.ra', 90)
|
|
1108
1184
|
end
|
1109
1185
|
.,.,
|
1110
1186
|
|
1111
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1112
|
-
def
|
1187
|
+
module_eval(<<'.,.,', 'grammar.ra', 114)
|
1188
|
+
def _reduce_51(val, _values, result)
|
1113
1189
|
result = ast AST::Function,
|
1114
1190
|
:name => val[0][:value],
|
1115
1191
|
:line => val[0][:line],
|
@@ -1120,8 +1196,8 @@ module_eval(<<'.,.,', 'grammar.ra', 97)
|
|
1120
1196
|
end
|
1121
1197
|
.,.,
|
1122
1198
|
|
1123
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1124
|
-
def
|
1199
|
+
module_eval(<<'.,.,', 'grammar.ra', 120)
|
1200
|
+
def _reduce_52(val, _values, result)
|
1125
1201
|
result = ast AST::Function,
|
1126
1202
|
:name => val[0][:value],
|
1127
1203
|
:line => val[0][:line],
|
@@ -1132,8 +1208,8 @@ module_eval(<<'.,.,', 'grammar.ra', 103)
|
|
1132
1208
|
end
|
1133
1209
|
.,.,
|
1134
1210
|
|
1135
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1136
|
-
def
|
1211
|
+
module_eval(<<'.,.,', 'grammar.ra', 127)
|
1212
|
+
def _reduce_53(val, _values, result)
|
1137
1213
|
result = ast AST::Function,
|
1138
1214
|
:name => val[0][:value],
|
1139
1215
|
:line => val[0][:line],
|
@@ -1144,15 +1220,15 @@ module_eval(<<'.,.,', 'grammar.ra', 110)
|
|
1144
1220
|
end
|
1145
1221
|
.,.,
|
1146
1222
|
|
1147
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1148
|
-
def
|
1223
|
+
module_eval(<<'.,.,', 'grammar.ra', 134)
|
1224
|
+
def _reduce_54(val, _values, result)
|
1149
1225
|
result = aryfy(val[0])
|
1150
1226
|
result
|
1151
1227
|
end
|
1152
1228
|
.,.,
|
1153
1229
|
|
1154
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1155
|
-
def
|
1230
|
+
module_eval(<<'.,.,', 'grammar.ra', 137)
|
1231
|
+
def _reduce_55(val, _values, result)
|
1156
1232
|
val[0].push(val[2])
|
1157
1233
|
result = val[0]
|
1158
1234
|
|
@@ -1160,44 +1236,44 @@ module_eval(<<'.,.,', 'grammar.ra', 120)
|
|
1160
1236
|
end
|
1161
1237
|
.,.,
|
1162
1238
|
|
1163
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1164
|
-
def
|
1239
|
+
module_eval(<<'.,.,', 'grammar.ra', 141)
|
1240
|
+
def _reduce_56(val, _values, result)
|
1165
1241
|
result = aryfy(val[0])
|
1166
1242
|
result
|
1167
1243
|
end
|
1168
1244
|
.,.,
|
1169
1245
|
|
1170
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1171
|
-
def
|
1246
|
+
module_eval(<<'.,.,', 'grammar.ra', 142)
|
1247
|
+
def _reduce_57(val, _values, result)
|
1172
1248
|
result = val[0].push(val[2])
|
1173
1249
|
result
|
1174
1250
|
end
|
1175
1251
|
.,.,
|
1176
1252
|
|
1177
|
-
# reduce
|
1253
|
+
# reduce 58 omitted
|
1178
1254
|
|
1179
|
-
# reduce
|
1255
|
+
# reduce 59 omitted
|
1180
1256
|
|
1181
|
-
# reduce
|
1257
|
+
# reduce 60 omitted
|
1182
1258
|
|
1183
|
-
# reduce
|
1259
|
+
# reduce 61 omitted
|
1184
1260
|
|
1185
|
-
# reduce
|
1261
|
+
# reduce 62 omitted
|
1186
1262
|
|
1187
|
-
# reduce
|
1263
|
+
# reduce 63 omitted
|
1188
1264
|
|
1189
|
-
# reduce
|
1265
|
+
# reduce 64 omitted
|
1190
1266
|
|
1191
|
-
# reduce
|
1267
|
+
# reduce 65 omitted
|
1192
1268
|
|
1193
|
-
# reduce
|
1269
|
+
# reduce 66 omitted
|
1194
1270
|
|
1195
|
-
# reduce
|
1271
|
+
# reduce 67 omitted
|
1196
1272
|
|
1197
|
-
# reduce
|
1273
|
+
# reduce 68 omitted
|
1198
1274
|
|
1199
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1200
|
-
def
|
1275
|
+
module_eval(<<'.,.,', 'grammar.ra', 157)
|
1276
|
+
def _reduce_69(val, _values, result)
|
1201
1277
|
@lexer.commentpop
|
1202
1278
|
result = ast(AST::Resource, :type => val[0], :instances => val[2])
|
1203
1279
|
|
@@ -1205,8 +1281,8 @@ module_eval(<<'.,.,', 'grammar.ra', 140)
|
|
1205
1281
|
end
|
1206
1282
|
.,.,
|
1207
1283
|
|
1208
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1209
|
-
def
|
1284
|
+
module_eval(<<'.,.,', 'grammar.ra', 160)
|
1285
|
+
def _reduce_70(val, _values, result)
|
1210
1286
|
# This is a deprecated syntax.
|
1211
1287
|
error "All resource specifications require names"
|
1212
1288
|
|
@@ -1214,8 +1290,8 @@ module_eval(<<'.,.,', 'grammar.ra', 143)
|
|
1214
1290
|
end
|
1215
1291
|
.,.,
|
1216
1292
|
|
1217
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1218
|
-
def
|
1293
|
+
module_eval(<<'.,.,', 'grammar.ra', 163)
|
1294
|
+
def _reduce_71(val, _values, result)
|
1219
1295
|
# a defaults setting for a type
|
1220
1296
|
@lexer.commentpop
|
1221
1297
|
result = ast(AST::ResourceDefaults, :type => val[0].value, :parameters => val[2])
|
@@ -1224,8 +1300,8 @@ module_eval(<<'.,.,', 'grammar.ra', 146)
|
|
1224
1300
|
end
|
1225
1301
|
.,.,
|
1226
1302
|
|
1227
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1228
|
-
def
|
1303
|
+
module_eval(<<'.,.,', 'grammar.ra', 170)
|
1304
|
+
def _reduce_72(val, _values, result)
|
1229
1305
|
@lexer.commentpop
|
1230
1306
|
result = ast AST::ResourceOverride, :object => val[0], :parameters => val[2]
|
1231
1307
|
|
@@ -1233,8 +1309,8 @@ module_eval(<<'.,.,', 'grammar.ra', 153)
|
|
1233
1309
|
end
|
1234
1310
|
.,.,
|
1235
1311
|
|
1236
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1237
|
-
def
|
1312
|
+
module_eval(<<'.,.,', 'grammar.ra', 177)
|
1313
|
+
def _reduce_73(val, _values, result)
|
1238
1314
|
type = val[0]
|
1239
1315
|
|
1240
1316
|
if (type == :exported and ! Puppet[:storeconfigs])
|
@@ -1254,22 +1330,22 @@ module_eval(<<'.,.,', 'grammar.ra', 160)
|
|
1254
1330
|
end
|
1255
1331
|
.,.,
|
1256
1332
|
|
1257
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1258
|
-
def
|
1333
|
+
module_eval(<<'.,.,', 'grammar.ra', 193)
|
1334
|
+
def _reduce_74(val, _values, result)
|
1259
1335
|
result = :virtual
|
1260
1336
|
result
|
1261
1337
|
end
|
1262
1338
|
.,.,
|
1263
1339
|
|
1264
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1265
|
-
def
|
1340
|
+
module_eval(<<'.,.,', 'grammar.ra', 194)
|
1341
|
+
def _reduce_75(val, _values, result)
|
1266
1342
|
result = :exported
|
1267
1343
|
result
|
1268
1344
|
end
|
1269
1345
|
.,.,
|
1270
1346
|
|
1271
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1272
|
-
def
|
1347
|
+
module_eval(<<'.,.,', 'grammar.ra', 199)
|
1348
|
+
def _reduce_76(val, _values, result)
|
1273
1349
|
@lexer.commentpop
|
1274
1350
|
type = val[0].value.downcase
|
1275
1351
|
args = {:type => type}
|
@@ -1291,8 +1367,8 @@ module_eval(<<'.,.,', 'grammar.ra', 182)
|
|
1291
1367
|
end
|
1292
1368
|
.,.,
|
1293
1369
|
|
1294
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1295
|
-
def
|
1370
|
+
module_eval(<<'.,.,', 'grammar.ra', 217)
|
1371
|
+
def _reduce_77(val, _values, result)
|
1296
1372
|
type = val[0].value.downcase
|
1297
1373
|
args = {:type => type }
|
1298
1374
|
|
@@ -1312,8 +1388,8 @@ module_eval(<<'.,.,', 'grammar.ra', 200)
|
|
1312
1388
|
end
|
1313
1389
|
.,.,
|
1314
1390
|
|
1315
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1316
|
-
def
|
1391
|
+
module_eval(<<'.,.,', 'grammar.ra', 235)
|
1392
|
+
def _reduce_78(val, _values, result)
|
1317
1393
|
if val[1]
|
1318
1394
|
result = val[1]
|
1319
1395
|
result.form = :virtual
|
@@ -1325,8 +1401,8 @@ module_eval(<<'.,.,', 'grammar.ra', 218)
|
|
1325
1401
|
end
|
1326
1402
|
.,.,
|
1327
1403
|
|
1328
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1329
|
-
def
|
1404
|
+
module_eval(<<'.,.,', 'grammar.ra', 243)
|
1405
|
+
def _reduce_79(val, _values, result)
|
1330
1406
|
if val[1]
|
1331
1407
|
result = val[1]
|
1332
1408
|
result.form = :exported
|
@@ -1338,22 +1414,22 @@ module_eval(<<'.,.,', 'grammar.ra', 226)
|
|
1338
1414
|
end
|
1339
1415
|
.,.,
|
1340
1416
|
|
1341
|
-
# reduce
|
1417
|
+
# reduce 80 omitted
|
1342
1418
|
|
1343
|
-
# reduce
|
1419
|
+
# reduce 81 omitted
|
1344
1420
|
|
1345
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1346
|
-
def
|
1421
|
+
module_eval(<<'.,.,', 'grammar.ra', 256)
|
1422
|
+
def _reduce_82(val, _values, result)
|
1347
1423
|
result = ast AST::CollExpr, :test1 => val[0], :oper => val[1], :test2 => val[2]
|
1348
1424
|
|
1349
1425
|
result
|
1350
1426
|
end
|
1351
1427
|
.,.,
|
1352
1428
|
|
1353
|
-
# reduce
|
1429
|
+
# reduce 83 omitted
|
1354
1430
|
|
1355
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1356
|
-
def
|
1431
|
+
module_eval(<<'.,.,', 'grammar.ra', 261)
|
1432
|
+
def _reduce_84(val, _values, result)
|
1357
1433
|
result = val[1]
|
1358
1434
|
result.parens = true
|
1359
1435
|
|
@@ -1361,22 +1437,22 @@ module_eval(<<'.,.,', 'grammar.ra', 244)
|
|
1361
1437
|
end
|
1362
1438
|
.,.,
|
1363
1439
|
|
1364
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1365
|
-
def
|
1440
|
+
module_eval(<<'.,.,', 'grammar.ra', 265)
|
1441
|
+
def _reduce_85(val, _values, result)
|
1366
1442
|
result=val[0][:value]
|
1367
1443
|
result
|
1368
1444
|
end
|
1369
1445
|
.,.,
|
1370
1446
|
|
1371
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1372
|
-
def
|
1447
|
+
module_eval(<<'.,.,', 'grammar.ra', 266)
|
1448
|
+
def _reduce_86(val, _values, result)
|
1373
1449
|
result=val[0][:value]
|
1374
1450
|
result
|
1375
1451
|
end
|
1376
1452
|
.,.,
|
1377
1453
|
|
1378
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1379
|
-
def
|
1454
|
+
module_eval(<<'.,.,', 'grammar.ra', 269)
|
1455
|
+
def _reduce_87(val, _values, result)
|
1380
1456
|
result = ast AST::CollExpr, :test1 => val[0], :oper => val[1][:value], :test2 => val[2]
|
1381
1457
|
#result = ast AST::CollExpr
|
1382
1458
|
#result.push *val
|
@@ -1385,8 +1461,8 @@ module_eval(<<'.,.,', 'grammar.ra', 252)
|
|
1385
1461
|
end
|
1386
1462
|
.,.,
|
1387
1463
|
|
1388
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1389
|
-
def
|
1464
|
+
module_eval(<<'.,.,', 'grammar.ra', 274)
|
1465
|
+
def _reduce_88(val, _values, result)
|
1390
1466
|
result = ast AST::CollExpr, :test1 => val[0], :oper => val[1][:value], :test2 => val[2]
|
1391
1467
|
#result = ast AST::CollExpr
|
1392
1468
|
#result.push *val
|
@@ -1395,27 +1471,27 @@ module_eval(<<'.,.,', 'grammar.ra', 257)
|
|
1395
1471
|
end
|
1396
1472
|
.,.,
|
1397
1473
|
|
1398
|
-
# reduce
|
1474
|
+
# reduce 89 omitted
|
1399
1475
|
|
1400
|
-
# reduce
|
1476
|
+
# reduce 90 omitted
|
1401
1477
|
|
1402
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1403
|
-
def
|
1478
|
+
module_eval(<<'.,.,', 'grammar.ra', 283)
|
1479
|
+
def _reduce_91(val, _values, result)
|
1404
1480
|
result = ast AST::ResourceInstance, :title => val[0], :parameters => val[2]
|
1405
1481
|
|
1406
1482
|
result
|
1407
1483
|
end
|
1408
1484
|
.,.,
|
1409
1485
|
|
1410
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1411
|
-
def
|
1486
|
+
module_eval(<<'.,.,', 'grammar.ra', 286)
|
1487
|
+
def _reduce_92(val, _values, result)
|
1412
1488
|
result = aryfy(val[0])
|
1413
1489
|
result
|
1414
1490
|
end
|
1415
1491
|
.,.,
|
1416
1492
|
|
1417
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1418
|
-
def
|
1493
|
+
module_eval(<<'.,.,', 'grammar.ra', 288)
|
1494
|
+
def _reduce_93(val, _values, result)
|
1419
1495
|
val[0].push val[2]
|
1420
1496
|
result = val[0]
|
1421
1497
|
|
@@ -1423,50 +1499,50 @@ module_eval(<<'.,.,', 'grammar.ra', 271)
|
|
1423
1499
|
end
|
1424
1500
|
.,.,
|
1425
1501
|
|
1426
|
-
# reduce
|
1502
|
+
# reduce 94 omitted
|
1427
1503
|
|
1428
|
-
# reduce
|
1504
|
+
# reduce 95 omitted
|
1429
1505
|
|
1430
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1431
|
-
def
|
1506
|
+
module_eval(<<'.,.,', 'grammar.ra', 296)
|
1507
|
+
def _reduce_96(val, _values, result)
|
1432
1508
|
result = ast AST::Undef, :value => :undef
|
1433
1509
|
|
1434
1510
|
result
|
1435
1511
|
end
|
1436
1512
|
.,.,
|
1437
1513
|
|
1438
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1439
|
-
def
|
1514
|
+
module_eval(<<'.,.,', 'grammar.ra', 300)
|
1515
|
+
def _reduce_97(val, _values, result)
|
1440
1516
|
result = ast AST::Name, :value => val[0][:value], :line => val[0][:line]
|
1441
1517
|
|
1442
1518
|
result
|
1443
1519
|
end
|
1444
1520
|
.,.,
|
1445
1521
|
|
1446
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1447
|
-
def
|
1522
|
+
module_eval(<<'.,.,', 'grammar.ra', 304)
|
1523
|
+
def _reduce_98(val, _values, result)
|
1448
1524
|
result = ast AST::Type, :value => val[0][:value], :line => val[0][:line]
|
1449
1525
|
|
1450
1526
|
result
|
1451
1527
|
end
|
1452
1528
|
.,.,
|
1453
1529
|
|
1454
|
-
# reduce
|
1530
|
+
# reduce 99 omitted
|
1455
1531
|
|
1456
|
-
# reduce
|
1532
|
+
# reduce 100 omitted
|
1457
1533
|
|
1458
|
-
# reduce
|
1534
|
+
# reduce 101 omitted
|
1459
1535
|
|
1460
|
-
# reduce
|
1536
|
+
# reduce 102 omitted
|
1461
1537
|
|
1462
|
-
# reduce
|
1538
|
+
# reduce 103 omitted
|
1463
1539
|
|
1464
|
-
# reduce
|
1540
|
+
# reduce 104 omitted
|
1465
1541
|
|
1466
|
-
# reduce
|
1542
|
+
# reduce 105 omitted
|
1467
1543
|
|
1468
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1469
|
-
def
|
1544
|
+
module_eval(<<'.,.,', 'grammar.ra', 316)
|
1545
|
+
def _reduce_106(val, _values, result)
|
1470
1546
|
raise Puppet::ParseError, "Cannot assign to variables in other namespaces" if val[0][:value] =~ /::/
|
1471
1547
|
# this is distinct from referencing a variable
|
1472
1548
|
variable = ast AST::Name, :value => val[0][:value], :line => val[0][:line]
|
@@ -1476,16 +1552,16 @@ module_eval(<<'.,.,', 'grammar.ra', 299)
|
|
1476
1552
|
end
|
1477
1553
|
.,.,
|
1478
1554
|
|
1479
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1480
|
-
def
|
1555
|
+
module_eval(<<'.,.,', 'grammar.ra', 322)
|
1556
|
+
def _reduce_107(val, _values, result)
|
1481
1557
|
result = ast AST::VarDef, :name => val[0], :value => val[2]
|
1482
1558
|
|
1483
1559
|
result
|
1484
1560
|
end
|
1485
1561
|
.,.,
|
1486
1562
|
|
1487
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1488
|
-
def
|
1563
|
+
module_eval(<<'.,.,', 'grammar.ra', 326)
|
1564
|
+
def _reduce_108(val, _values, result)
|
1489
1565
|
variable = ast AST::Name, :value => val[0][:value], :line => val[0][:line]
|
1490
1566
|
result = ast AST::VarDef, :name => variable, :value => val[2], :append => true, :line => val[0][:line]
|
1491
1567
|
|
@@ -1493,23 +1569,23 @@ module_eval(<<'.,.,', 'grammar.ra', 309)
|
|
1493
1569
|
end
|
1494
1570
|
.,.,
|
1495
1571
|
|
1496
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1497
|
-
def
|
1572
|
+
module_eval(<<'.,.,', 'grammar.ra', 332)
|
1573
|
+
def _reduce_109(val, _values, result)
|
1498
1574
|
result = ast AST::ASTArray
|
1499
1575
|
|
1500
1576
|
result
|
1501
1577
|
end
|
1502
1578
|
.,.,
|
1503
1579
|
|
1504
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1505
|
-
def
|
1580
|
+
module_eval(<<'.,.,', 'grammar.ra', 334)
|
1581
|
+
def _reduce_110(val, _values, result)
|
1506
1582
|
result = aryfy(val[0])
|
1507
1583
|
result
|
1508
1584
|
end
|
1509
1585
|
.,.,
|
1510
1586
|
|
1511
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1512
|
-
def
|
1587
|
+
module_eval(<<'.,.,', 'grammar.ra', 336)
|
1588
|
+
def _reduce_111(val, _values, result)
|
1513
1589
|
val[0].push(val[2])
|
1514
1590
|
result = val[0]
|
1515
1591
|
|
@@ -1517,16 +1593,22 @@ module_eval(<<'.,.,', 'grammar.ra', 319)
|
|
1517
1593
|
end
|
1518
1594
|
.,.,
|
1519
1595
|
|
1520
|
-
|
1521
|
-
|
1596
|
+
# reduce 112 omitted
|
1597
|
+
|
1598
|
+
# reduce 113 omitted
|
1599
|
+
|
1600
|
+
# reduce 114 omitted
|
1601
|
+
|
1602
|
+
module_eval(<<'.,.,', 'grammar.ra', 345)
|
1603
|
+
def _reduce_115(val, _values, result)
|
1522
1604
|
result = ast AST::ResourceParam, :param => val[0][:value], :line => val[0][:line], :value => val[2]
|
1523
1605
|
|
1524
1606
|
result
|
1525
1607
|
end
|
1526
1608
|
.,.,
|
1527
1609
|
|
1528
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1529
|
-
def
|
1610
|
+
module_eval(<<'.,.,', 'grammar.ra', 349)
|
1611
|
+
def _reduce_116(val, _values, result)
|
1530
1612
|
result = ast AST::ResourceParam, :param => val[0][:value], :line => val[0][:line], :value => val[2],
|
1531
1613
|
:add => true
|
1532
1614
|
|
@@ -1534,27 +1616,27 @@ module_eval(<<'.,.,', 'grammar.ra', 328)
|
|
1534
1616
|
end
|
1535
1617
|
.,.,
|
1536
1618
|
|
1537
|
-
# reduce
|
1619
|
+
# reduce 117 omitted
|
1538
1620
|
|
1539
|
-
# reduce
|
1621
|
+
# reduce 118 omitted
|
1540
1622
|
|
1541
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1542
|
-
def
|
1623
|
+
module_eval(<<'.,.,', 'grammar.ra', 358)
|
1624
|
+
def _reduce_119(val, _values, result)
|
1543
1625
|
result = ast AST::ASTArray
|
1544
1626
|
|
1545
1627
|
result
|
1546
1628
|
end
|
1547
1629
|
.,.,
|
1548
1630
|
|
1549
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1550
|
-
def
|
1631
|
+
module_eval(<<'.,.,', 'grammar.ra', 360)
|
1632
|
+
def _reduce_120(val, _values, result)
|
1551
1633
|
result = aryfy(val[0])
|
1552
1634
|
result
|
1553
1635
|
end
|
1554
1636
|
.,.,
|
1555
1637
|
|
1556
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1557
|
-
def
|
1638
|
+
module_eval(<<'.,.,', 'grammar.ra', 362)
|
1639
|
+
def _reduce_121(val, _values, result)
|
1558
1640
|
val[0].push(val[2])
|
1559
1641
|
result = val[0]
|
1560
1642
|
|
@@ -1562,8 +1644,8 @@ module_eval(<<'.,.,', 'grammar.ra', 341)
|
|
1562
1644
|
end
|
1563
1645
|
.,.,
|
1564
1646
|
|
1565
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1566
|
-
def
|
1647
|
+
module_eval(<<'.,.,', 'grammar.ra', 368)
|
1648
|
+
def _reduce_122(val, _values, result)
|
1567
1649
|
result = ast AST::Function,
|
1568
1650
|
:name => val[0][:value], :line => val[0][:line],
|
1569
1651
|
:arguments => val[2],
|
@@ -1573,8 +1655,8 @@ module_eval(<<'.,.,', 'grammar.ra', 347)
|
|
1573
1655
|
end
|
1574
1656
|
.,.,
|
1575
1657
|
|
1576
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1577
|
-
def
|
1658
|
+
module_eval(<<'.,.,', 'grammar.ra', 373)
|
1659
|
+
def _reduce_123(val, _values, result)
|
1578
1660
|
result = ast AST::Function,
|
1579
1661
|
:name => val[0][:value], :line => val[0][:line],
|
1580
1662
|
:arguments => AST::ASTArray.new({}),
|
@@ -1584,51 +1666,51 @@ module_eval(<<'.,.,', 'grammar.ra', 352)
|
|
1584
1666
|
end
|
1585
1667
|
.,.,
|
1586
1668
|
|
1587
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1588
|
-
def
|
1669
|
+
module_eval(<<'.,.,', 'grammar.ra', 379)
|
1670
|
+
def _reduce_124(val, _values, result)
|
1589
1671
|
result = ast AST::String, :value => val[0][:value], :line => val[0][:line]
|
1590
1672
|
result
|
1591
1673
|
end
|
1592
1674
|
.,.,
|
1593
1675
|
|
1594
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1595
|
-
def
|
1676
|
+
module_eval(<<'.,.,', 'grammar.ra', 380)
|
1677
|
+
def _reduce_125(val, _values, result)
|
1596
1678
|
result = ast AST::Concat, :value => [ast(AST::String,val[0])]+val[1], :line => val[0][:line]
|
1597
1679
|
result
|
1598
1680
|
end
|
1599
1681
|
.,.,
|
1600
1682
|
|
1601
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1602
|
-
def
|
1683
|
+
module_eval(<<'.,.,', 'grammar.ra', 382)
|
1684
|
+
def _reduce_126(val, _values, result)
|
1603
1685
|
result = [val[0]] + val[1]
|
1604
1686
|
result
|
1605
1687
|
end
|
1606
1688
|
.,.,
|
1607
1689
|
|
1608
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1609
|
-
def
|
1690
|
+
module_eval(<<'.,.,', 'grammar.ra', 384)
|
1691
|
+
def _reduce_127(val, _values, result)
|
1610
1692
|
result = [ast(AST::String,val[0])]
|
1611
1693
|
result
|
1612
1694
|
end
|
1613
1695
|
.,.,
|
1614
1696
|
|
1615
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1616
|
-
def
|
1697
|
+
module_eval(<<'.,.,', 'grammar.ra', 385)
|
1698
|
+
def _reduce_128(val, _values, result)
|
1617
1699
|
result = [ast(AST::String,val[0])] + val[1]
|
1618
1700
|
result
|
1619
1701
|
end
|
1620
1702
|
.,.,
|
1621
1703
|
|
1622
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1623
|
-
def
|
1704
|
+
module_eval(<<'.,.,', 'grammar.ra', 388)
|
1705
|
+
def _reduce_129(val, _values, result)
|
1624
1706
|
result = ast AST::Boolean, :value => val[0][:value], :line => val[0][:line]
|
1625
1707
|
|
1626
1708
|
result
|
1627
1709
|
end
|
1628
1710
|
.,.,
|
1629
1711
|
|
1630
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1631
|
-
def
|
1712
|
+
module_eval(<<'.,.,', 'grammar.ra', 392)
|
1713
|
+
def _reduce_130(val, _values, result)
|
1632
1714
|
Puppet.warning addcontext("Deprecation notice: Resource references should now be capitalized")
|
1633
1715
|
result = ast AST::ResourceReference, :type => val[0][:value], :line => val[0][:line], :title => val[2]
|
1634
1716
|
|
@@ -1636,24 +1718,51 @@ module_eval(<<'.,.,', 'grammar.ra', 371)
|
|
1636
1718
|
end
|
1637
1719
|
.,.,
|
1638
1720
|
|
1639
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1640
|
-
def
|
1721
|
+
module_eval(<<'.,.,', 'grammar.ra', 395)
|
1722
|
+
def _reduce_131(val, _values, result)
|
1641
1723
|
result = ast AST::ResourceReference, :type => val[0].value, :title => val[2]
|
1642
1724
|
|
1643
1725
|
result
|
1644
1726
|
end
|
1645
1727
|
.,.,
|
1646
1728
|
|
1647
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1648
|
-
def
|
1729
|
+
module_eval(<<'.,.,', 'grammar.ra', 399)
|
1730
|
+
def _reduce_132(val, _values, result)
|
1731
|
+
@lexer.commentpop
|
1732
|
+
args = {
|
1733
|
+
:test => ast(AST::Not, :value => val[1]),
|
1734
|
+
:statements => val[3]
|
1735
|
+
}
|
1736
|
+
|
1737
|
+
result = ast AST::IfStatement, args
|
1738
|
+
|
1739
|
+
result
|
1740
|
+
end
|
1741
|
+
.,.,
|
1742
|
+
|
1743
|
+
module_eval(<<'.,.,', 'grammar.ra', 408)
|
1744
|
+
def _reduce_133(val, _values, result)
|
1745
|
+
@lexer.commentpop
|
1746
|
+
args = {
|
1747
|
+
:test => ast(AST::Not, :value => val[1]),
|
1748
|
+
:statements => ast(AST::Nop)
|
1749
|
+
}
|
1750
|
+
result = ast AST::IfStatement, args
|
1751
|
+
|
1752
|
+
result
|
1753
|
+
end
|
1754
|
+
.,.,
|
1755
|
+
|
1756
|
+
module_eval(<<'.,.,', 'grammar.ra', 417)
|
1757
|
+
def _reduce_134(val, _values, result)
|
1649
1758
|
result = val[1]
|
1650
1759
|
|
1651
1760
|
result
|
1652
1761
|
end
|
1653
1762
|
.,.,
|
1654
1763
|
|
1655
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1656
|
-
def
|
1764
|
+
module_eval(<<'.,.,', 'grammar.ra', 421)
|
1765
|
+
def _reduce_135(val, _values, result)
|
1657
1766
|
@lexer.commentpop
|
1658
1767
|
args = {
|
1659
1768
|
:test => val[0],
|
@@ -1668,8 +1777,8 @@ module_eval(<<'.,.,', 'grammar.ra', 382)
|
|
1668
1777
|
end
|
1669
1778
|
.,.,
|
1670
1779
|
|
1671
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1672
|
-
def
|
1780
|
+
module_eval(<<'.,.,', 'grammar.ra', 432)
|
1781
|
+
def _reduce_136(val, _values, result)
|
1673
1782
|
@lexer.commentpop
|
1674
1783
|
args = {
|
1675
1784
|
:test => val[0],
|
@@ -1684,18 +1793,18 @@ module_eval(<<'.,.,', 'grammar.ra', 393)
|
|
1684
1793
|
end
|
1685
1794
|
.,.,
|
1686
1795
|
|
1687
|
-
# reduce
|
1796
|
+
# reduce 137 omitted
|
1688
1797
|
|
1689
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1690
|
-
def
|
1798
|
+
module_eval(<<'.,.,', 'grammar.ra', 445)
|
1799
|
+
def _reduce_138(val, _values, result)
|
1691
1800
|
result = ast AST::Else, :statements => val[1]
|
1692
1801
|
|
1693
1802
|
result
|
1694
1803
|
end
|
1695
1804
|
.,.,
|
1696
1805
|
|
1697
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1698
|
-
def
|
1806
|
+
module_eval(<<'.,.,', 'grammar.ra', 448)
|
1807
|
+
def _reduce_139(val, _values, result)
|
1699
1808
|
@lexer.commentpop
|
1700
1809
|
result = ast AST::Else, :statements => val[2]
|
1701
1810
|
|
@@ -1703,8 +1812,8 @@ module_eval(<<'.,.,', 'grammar.ra', 409)
|
|
1703
1812
|
end
|
1704
1813
|
.,.,
|
1705
1814
|
|
1706
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1707
|
-
def
|
1815
|
+
module_eval(<<'.,.,', 'grammar.ra', 452)
|
1816
|
+
def _reduce_140(val, _values, result)
|
1708
1817
|
@lexer.commentpop
|
1709
1818
|
result = ast AST::Else, :statements => ast(AST::Nop)
|
1710
1819
|
|
@@ -1712,172 +1821,172 @@ module_eval(<<'.,.,', 'grammar.ra', 413)
|
|
1712
1821
|
end
|
1713
1822
|
.,.,
|
1714
1823
|
|
1715
|
-
# reduce
|
1824
|
+
# reduce 141 omitted
|
1716
1825
|
|
1717
|
-
# reduce
|
1826
|
+
# reduce 142 omitted
|
1718
1827
|
|
1719
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1720
|
-
def
|
1828
|
+
module_eval(<<'.,.,', 'grammar.ra', 471)
|
1829
|
+
def _reduce_143(val, _values, result)
|
1721
1830
|
result = ast AST::InOperator, :lval => val[0], :rval => val[2]
|
1722
1831
|
|
1723
1832
|
result
|
1724
1833
|
end
|
1725
1834
|
.,.,
|
1726
1835
|
|
1727
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1728
|
-
def
|
1836
|
+
module_eval(<<'.,.,', 'grammar.ra', 474)
|
1837
|
+
def _reduce_144(val, _values, result)
|
1729
1838
|
result = ast AST::MatchOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1730
1839
|
|
1731
1840
|
result
|
1732
1841
|
end
|
1733
1842
|
.,.,
|
1734
1843
|
|
1735
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1736
|
-
def
|
1844
|
+
module_eval(<<'.,.,', 'grammar.ra', 477)
|
1845
|
+
def _reduce_145(val, _values, result)
|
1737
1846
|
result = ast AST::MatchOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1738
1847
|
|
1739
1848
|
result
|
1740
1849
|
end
|
1741
1850
|
.,.,
|
1742
1851
|
|
1743
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1744
|
-
def
|
1852
|
+
module_eval(<<'.,.,', 'grammar.ra', 480)
|
1853
|
+
def _reduce_146(val, _values, result)
|
1745
1854
|
result = ast AST::ArithmeticOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1746
1855
|
|
1747
1856
|
result
|
1748
1857
|
end
|
1749
1858
|
.,.,
|
1750
1859
|
|
1751
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1752
|
-
def
|
1860
|
+
module_eval(<<'.,.,', 'grammar.ra', 483)
|
1861
|
+
def _reduce_147(val, _values, result)
|
1753
1862
|
result = ast AST::ArithmeticOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1754
1863
|
|
1755
1864
|
result
|
1756
1865
|
end
|
1757
1866
|
.,.,
|
1758
1867
|
|
1759
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1760
|
-
def
|
1868
|
+
module_eval(<<'.,.,', 'grammar.ra', 486)
|
1869
|
+
def _reduce_148(val, _values, result)
|
1761
1870
|
result = ast AST::ArithmeticOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1762
1871
|
|
1763
1872
|
result
|
1764
1873
|
end
|
1765
1874
|
.,.,
|
1766
1875
|
|
1767
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1768
|
-
def
|
1876
|
+
module_eval(<<'.,.,', 'grammar.ra', 489)
|
1877
|
+
def _reduce_149(val, _values, result)
|
1769
1878
|
result = ast AST::ArithmeticOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1770
1879
|
|
1771
1880
|
result
|
1772
1881
|
end
|
1773
1882
|
.,.,
|
1774
1883
|
|
1775
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1776
|
-
def
|
1884
|
+
module_eval(<<'.,.,', 'grammar.ra', 492)
|
1885
|
+
def _reduce_150(val, _values, result)
|
1777
1886
|
result = ast AST::ArithmeticOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1778
1887
|
|
1779
1888
|
result
|
1780
1889
|
end
|
1781
1890
|
.,.,
|
1782
1891
|
|
1783
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1784
|
-
def
|
1892
|
+
module_eval(<<'.,.,', 'grammar.ra', 495)
|
1893
|
+
def _reduce_151(val, _values, result)
|
1785
1894
|
result = ast AST::ArithmeticOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1786
1895
|
|
1787
1896
|
result
|
1788
1897
|
end
|
1789
1898
|
.,.,
|
1790
1899
|
|
1791
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1792
|
-
def
|
1900
|
+
module_eval(<<'.,.,', 'grammar.ra', 498)
|
1901
|
+
def _reduce_152(val, _values, result)
|
1793
1902
|
result = ast AST::Minus, :value => val[1]
|
1794
1903
|
|
1795
1904
|
result
|
1796
1905
|
end
|
1797
1906
|
.,.,
|
1798
1907
|
|
1799
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1800
|
-
def
|
1908
|
+
module_eval(<<'.,.,', 'grammar.ra', 501)
|
1909
|
+
def _reduce_153(val, _values, result)
|
1801
1910
|
result = ast AST::ComparisonOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1802
1911
|
|
1803
1912
|
result
|
1804
1913
|
end
|
1805
1914
|
.,.,
|
1806
1915
|
|
1807
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1808
|
-
def
|
1916
|
+
module_eval(<<'.,.,', 'grammar.ra', 504)
|
1917
|
+
def _reduce_154(val, _values, result)
|
1809
1918
|
result = ast AST::ComparisonOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1810
1919
|
|
1811
1920
|
result
|
1812
1921
|
end
|
1813
1922
|
.,.,
|
1814
1923
|
|
1815
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1816
|
-
def
|
1924
|
+
module_eval(<<'.,.,', 'grammar.ra', 507)
|
1925
|
+
def _reduce_155(val, _values, result)
|
1817
1926
|
result = ast AST::ComparisonOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1818
1927
|
|
1819
1928
|
result
|
1820
1929
|
end
|
1821
1930
|
.,.,
|
1822
1931
|
|
1823
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1824
|
-
def
|
1932
|
+
module_eval(<<'.,.,', 'grammar.ra', 510)
|
1933
|
+
def _reduce_156(val, _values, result)
|
1825
1934
|
result = ast AST::ComparisonOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1826
1935
|
|
1827
1936
|
result
|
1828
1937
|
end
|
1829
1938
|
.,.,
|
1830
1939
|
|
1831
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1832
|
-
def
|
1940
|
+
module_eval(<<'.,.,', 'grammar.ra', 513)
|
1941
|
+
def _reduce_157(val, _values, result)
|
1833
1942
|
result = ast AST::ComparisonOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1834
1943
|
|
1835
1944
|
result
|
1836
1945
|
end
|
1837
1946
|
.,.,
|
1838
1947
|
|
1839
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1840
|
-
def
|
1948
|
+
module_eval(<<'.,.,', 'grammar.ra', 516)
|
1949
|
+
def _reduce_158(val, _values, result)
|
1841
1950
|
result = ast AST::ComparisonOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1842
1951
|
|
1843
1952
|
result
|
1844
1953
|
end
|
1845
1954
|
.,.,
|
1846
1955
|
|
1847
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1848
|
-
def
|
1956
|
+
module_eval(<<'.,.,', 'grammar.ra', 519)
|
1957
|
+
def _reduce_159(val, _values, result)
|
1849
1958
|
result = ast AST::Not, :value => val[1]
|
1850
1959
|
|
1851
1960
|
result
|
1852
1961
|
end
|
1853
1962
|
.,.,
|
1854
1963
|
|
1855
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1856
|
-
def
|
1964
|
+
module_eval(<<'.,.,', 'grammar.ra', 522)
|
1965
|
+
def _reduce_160(val, _values, result)
|
1857
1966
|
result = ast AST::BooleanOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1858
1967
|
|
1859
1968
|
result
|
1860
1969
|
end
|
1861
1970
|
.,.,
|
1862
1971
|
|
1863
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1864
|
-
def
|
1972
|
+
module_eval(<<'.,.,', 'grammar.ra', 525)
|
1973
|
+
def _reduce_161(val, _values, result)
|
1865
1974
|
result = ast AST::BooleanOperator, :operator => val[1][:value], :lval => val[0], :rval => val[2]
|
1866
1975
|
|
1867
1976
|
result
|
1868
1977
|
end
|
1869
1978
|
.,.,
|
1870
1979
|
|
1871
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1872
|
-
def
|
1980
|
+
module_eval(<<'.,.,', 'grammar.ra', 528)
|
1981
|
+
def _reduce_162(val, _values, result)
|
1873
1982
|
result = val[1]
|
1874
1983
|
|
1875
1984
|
result
|
1876
1985
|
end
|
1877
1986
|
.,.,
|
1878
1987
|
|
1879
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1880
|
-
def
|
1988
|
+
module_eval(<<'.,.,', 'grammar.ra', 532)
|
1989
|
+
def _reduce_163(val, _values, result)
|
1881
1990
|
@lexer.commentpop
|
1882
1991
|
result = ast AST::CaseStatement, :test => val[1], :options => val[3]
|
1883
1992
|
|
@@ -1885,15 +1994,15 @@ module_eval(<<'.,.,', 'grammar.ra', 493)
|
|
1885
1994
|
end
|
1886
1995
|
.,.,
|
1887
1996
|
|
1888
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1889
|
-
def
|
1997
|
+
module_eval(<<'.,.,', 'grammar.ra', 536)
|
1998
|
+
def _reduce_164(val, _values, result)
|
1890
1999
|
result = aryfy(val[0])
|
1891
2000
|
result
|
1892
2001
|
end
|
1893
2002
|
.,.,
|
1894
2003
|
|
1895
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1896
|
-
def
|
2004
|
+
module_eval(<<'.,.,', 'grammar.ra', 538)
|
2005
|
+
def _reduce_165(val, _values, result)
|
1897
2006
|
val[0].push val[1]
|
1898
2007
|
result = val[0]
|
1899
2008
|
|
@@ -1901,8 +2010,8 @@ module_eval(<<'.,.,', 'grammar.ra', 499)
|
|
1901
2010
|
end
|
1902
2011
|
.,.,
|
1903
2012
|
|
1904
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1905
|
-
def
|
2013
|
+
module_eval(<<'.,.,', 'grammar.ra', 543)
|
2014
|
+
def _reduce_166(val, _values, result)
|
1906
2015
|
@lexer.commentpop
|
1907
2016
|
result = ast AST::CaseOpt, :value => val[0], :statements => val[3]
|
1908
2017
|
|
@@ -1910,8 +2019,8 @@ module_eval(<<'.,.,', 'grammar.ra', 504)
|
|
1910
2019
|
end
|
1911
2020
|
.,.,
|
1912
2021
|
|
1913
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1914
|
-
def
|
2022
|
+
module_eval(<<'.,.,', 'grammar.ra', 546)
|
2023
|
+
def _reduce_167(val, _values, result)
|
1915
2024
|
@lexer.commentpop
|
1916
2025
|
|
1917
2026
|
result = ast(
|
@@ -1925,15 +2034,15 @@ module_eval(<<'.,.,', 'grammar.ra', 507)
|
|
1925
2034
|
end
|
1926
2035
|
.,.,
|
1927
2036
|
|
1928
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1929
|
-
def
|
2037
|
+
module_eval(<<'.,.,', 'grammar.ra', 556)
|
2038
|
+
def _reduce_168(val, _values, result)
|
1930
2039
|
result = aryfy(val[0])
|
1931
2040
|
result
|
1932
2041
|
end
|
1933
2042
|
.,.,
|
1934
2043
|
|
1935
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1936
|
-
def
|
2044
|
+
module_eval(<<'.,.,', 'grammar.ra', 558)
|
2045
|
+
def _reduce_169(val, _values, result)
|
1937
2046
|
val[0].push(val[2])
|
1938
2047
|
result = val[0]
|
1939
2048
|
|
@@ -1941,18 +2050,18 @@ module_eval(<<'.,.,', 'grammar.ra', 519)
|
|
1941
2050
|
end
|
1942
2051
|
.,.,
|
1943
2052
|
|
1944
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1945
|
-
def
|
2053
|
+
module_eval(<<'.,.,', 'grammar.ra', 563)
|
2054
|
+
def _reduce_170(val, _values, result)
|
1946
2055
|
result = ast AST::Selector, :param => val[0], :values => val[2]
|
1947
2056
|
|
1948
2057
|
result
|
1949
2058
|
end
|
1950
2059
|
.,.,
|
1951
2060
|
|
1952
|
-
# reduce
|
2061
|
+
# reduce 171 omitted
|
1953
2062
|
|
1954
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1955
|
-
def
|
2063
|
+
module_eval(<<'.,.,', 'grammar.ra', 568)
|
2064
|
+
def _reduce_172(val, _values, result)
|
1956
2065
|
@lexer.commentpop
|
1957
2066
|
result = val[1]
|
1958
2067
|
|
@@ -1960,10 +2069,10 @@ module_eval(<<'.,.,', 'grammar.ra', 529)
|
|
1960
2069
|
end
|
1961
2070
|
.,.,
|
1962
2071
|
|
1963
|
-
# reduce
|
2072
|
+
# reduce 173 omitted
|
1964
2073
|
|
1965
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1966
|
-
def
|
2074
|
+
module_eval(<<'.,.,', 'grammar.ra', 574)
|
2075
|
+
def _reduce_174(val, _values, result)
|
1967
2076
|
if val[0].instance_of?(AST::ASTArray)
|
1968
2077
|
val[0].push(val[2])
|
1969
2078
|
result = val[0]
|
@@ -1975,58 +2084,58 @@ module_eval(<<'.,.,', 'grammar.ra', 535)
|
|
1975
2084
|
end
|
1976
2085
|
.,.,
|
1977
2086
|
|
1978
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
1979
|
-
def
|
2087
|
+
module_eval(<<'.,.,', 'grammar.ra', 583)
|
2088
|
+
def _reduce_175(val, _values, result)
|
1980
2089
|
result = ast AST::ResourceParam, :param => val[0], :value => val[2]
|
1981
2090
|
|
1982
2091
|
result
|
1983
2092
|
end
|
1984
2093
|
.,.,
|
1985
2094
|
|
1986
|
-
# reduce
|
2095
|
+
# reduce 176 omitted
|
1987
2096
|
|
1988
|
-
# reduce
|
2097
|
+
# reduce 177 omitted
|
1989
2098
|
|
1990
|
-
# reduce
|
2099
|
+
# reduce 178 omitted
|
1991
2100
|
|
1992
|
-
# reduce
|
2101
|
+
# reduce 179 omitted
|
1993
2102
|
|
1994
|
-
# reduce
|
2103
|
+
# reduce 180 omitted
|
1995
2104
|
|
1996
|
-
# reduce
|
2105
|
+
# reduce 181 omitted
|
1997
2106
|
|
1998
|
-
# reduce
|
2107
|
+
# reduce 182 omitted
|
1999
2108
|
|
2000
|
-
# reduce
|
2109
|
+
# reduce 183 omitted
|
2001
2110
|
|
2002
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2003
|
-
def
|
2111
|
+
module_eval(<<'.,.,', 'grammar.ra', 595)
|
2112
|
+
def _reduce_184(val, _values, result)
|
2004
2113
|
result = ast AST::Default, :value => val[0][:value], :line => val[0][:line]
|
2005
2114
|
|
2006
2115
|
result
|
2007
2116
|
end
|
2008
2117
|
.,.,
|
2009
2118
|
|
2010
|
-
# reduce
|
2119
|
+
# reduce 185 omitted
|
2011
2120
|
|
2012
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2013
|
-
def
|
2121
|
+
module_eval(<<'.,.,', 'grammar.ra', 600)
|
2122
|
+
def _reduce_186(val, _values, result)
|
2014
2123
|
result = [val[0][:value]]
|
2015
2124
|
result
|
2016
2125
|
end
|
2017
2126
|
.,.,
|
2018
2127
|
|
2019
|
-
# reduce
|
2128
|
+
# reduce 187 omitted
|
2020
2129
|
|
2021
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2022
|
-
def
|
2130
|
+
module_eval(<<'.,.,', 'grammar.ra', 602)
|
2131
|
+
def _reduce_188(val, _values, result)
|
2023
2132
|
result = val[0] += val[2]
|
2024
2133
|
result
|
2025
2134
|
end
|
2026
2135
|
.,.,
|
2027
2136
|
|
2028
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2029
|
-
def
|
2137
|
+
module_eval(<<'.,.,', 'grammar.ra', 605)
|
2138
|
+
def _reduce_189(val, _values, result)
|
2030
2139
|
val[1].each do |file|
|
2031
2140
|
import(file)
|
2032
2141
|
end
|
@@ -2037,8 +2146,8 @@ module_eval(<<'.,.,', 'grammar.ra', 566)
|
|
2037
2146
|
end
|
2038
2147
|
.,.,
|
2039
2148
|
|
2040
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2041
|
-
def
|
2149
|
+
module_eval(<<'.,.,', 'grammar.ra', 615)
|
2150
|
+
def _reduce_190(val, _values, result)
|
2042
2151
|
@lexer.commentpop
|
2043
2152
|
result = Puppet::Parser::AST::Definition.new(classname(val[1]),
|
2044
2153
|
ast_context(true).merge(:arguments => val[2], :code => val[4],
|
@@ -2051,8 +2160,8 @@ module_eval(<<'.,.,', 'grammar.ra', 576)
|
|
2051
2160
|
end
|
2052
2161
|
.,.,
|
2053
2162
|
|
2054
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2055
|
-
def
|
2163
|
+
module_eval(<<'.,.,', 'grammar.ra', 623)
|
2164
|
+
def _reduce_191(val, _values, result)
|
2056
2165
|
@lexer.commentpop
|
2057
2166
|
result = Puppet::Parser::AST::Definition.new(classname(val[1]),
|
2058
2167
|
ast_context(true).merge(:arguments => val[2], :line => val[0][:line]))
|
@@ -2062,8 +2171,8 @@ module_eval(<<'.,.,', 'grammar.ra', 584)
|
|
2062
2171
|
end
|
2063
2172
|
.,.,
|
2064
2173
|
|
2065
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2066
|
-
def
|
2174
|
+
module_eval(<<'.,.,', 'grammar.ra', 631)
|
2175
|
+
def _reduce_192(val, _values, result)
|
2067
2176
|
@lexer.commentpop
|
2068
2177
|
# Our class gets defined in the parent namespace, not our own.
|
2069
2178
|
@lexer.namepop
|
@@ -2075,8 +2184,8 @@ module_eval(<<'.,.,', 'grammar.ra', 592)
|
|
2075
2184
|
end
|
2076
2185
|
.,.,
|
2077
2186
|
|
2078
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2079
|
-
def
|
2187
|
+
module_eval(<<'.,.,', 'grammar.ra', 638)
|
2188
|
+
def _reduce_193(val, _values, result)
|
2080
2189
|
@lexer.commentpop
|
2081
2190
|
# Our class gets defined in the parent namespace, not our own.
|
2082
2191
|
@lexer.namepop
|
@@ -2088,8 +2197,8 @@ module_eval(<<'.,.,', 'grammar.ra', 599)
|
|
2088
2197
|
end
|
2089
2198
|
.,.,
|
2090
2199
|
|
2091
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2092
|
-
def
|
2200
|
+
module_eval(<<'.,.,', 'grammar.ra', 647)
|
2201
|
+
def _reduce_194(val, _values, result)
|
2093
2202
|
@lexer.commentpop
|
2094
2203
|
result = Puppet::Parser::AST::Node.new(val[1],
|
2095
2204
|
ast_context(true).merge(:parent => val[2], :code => val[4],
|
@@ -2099,8 +2208,8 @@ module_eval(<<'.,.,', 'grammar.ra', 608)
|
|
2099
2208
|
end
|
2100
2209
|
.,.,
|
2101
2210
|
|
2102
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2103
|
-
def
|
2211
|
+
module_eval(<<'.,.,', 'grammar.ra', 652)
|
2212
|
+
def _reduce_195(val, _values, result)
|
2104
2213
|
@lexer.commentpop
|
2105
2214
|
result = Puppet::Parser::AST::Node.new(val[1], ast_context(true).merge(:parent => val[2], :line => val[0][:line]))
|
2106
2215
|
|
@@ -2108,30 +2217,30 @@ module_eval(<<'.,.,', 'grammar.ra', 613)
|
|
2108
2217
|
end
|
2109
2218
|
.,.,
|
2110
2219
|
|
2111
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2112
|
-
def
|
2220
|
+
module_eval(<<'.,.,', 'grammar.ra', 656)
|
2221
|
+
def _reduce_196(val, _values, result)
|
2113
2222
|
result = val[0][:value]
|
2114
2223
|
result
|
2115
2224
|
end
|
2116
2225
|
.,.,
|
2117
2226
|
|
2118
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2119
|
-
def
|
2227
|
+
module_eval(<<'.,.,', 'grammar.ra', 657)
|
2228
|
+
def _reduce_197(val, _values, result)
|
2120
2229
|
result = "class"
|
2121
2230
|
result
|
2122
2231
|
end
|
2123
2232
|
.,.,
|
2124
2233
|
|
2125
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2126
|
-
def
|
2234
|
+
module_eval(<<'.,.,', 'grammar.ra', 662)
|
2235
|
+
def _reduce_198(val, _values, result)
|
2127
2236
|
result = [result]
|
2128
2237
|
|
2129
2238
|
result
|
2130
2239
|
end
|
2131
2240
|
.,.,
|
2132
2241
|
|
2133
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2134
|
-
def
|
2242
|
+
module_eval(<<'.,.,', 'grammar.ra', 665)
|
2243
|
+
def _reduce_199(val, _values, result)
|
2135
2244
|
result = val[0]
|
2136
2245
|
result << val[2]
|
2137
2246
|
|
@@ -2139,65 +2248,65 @@ module_eval(<<'.,.,', 'grammar.ra', 626)
|
|
2139
2248
|
end
|
2140
2249
|
.,.,
|
2141
2250
|
|
2142
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2143
|
-
def
|
2251
|
+
module_eval(<<'.,.,', 'grammar.ra', 670)
|
2252
|
+
def _reduce_200(val, _values, result)
|
2144
2253
|
result = ast AST::HostName, :value => val[0]
|
2145
2254
|
|
2146
2255
|
result
|
2147
2256
|
end
|
2148
2257
|
.,.,
|
2149
2258
|
|
2150
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2151
|
-
def
|
2259
|
+
module_eval(<<'.,.,', 'grammar.ra', 673)
|
2260
|
+
def _reduce_201(val, _values, result)
|
2152
2261
|
result = val[0][:value]
|
2153
2262
|
result
|
2154
2263
|
end
|
2155
2264
|
.,.,
|
2156
2265
|
|
2157
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2158
|
-
def
|
2266
|
+
module_eval(<<'.,.,', 'grammar.ra', 674)
|
2267
|
+
def _reduce_202(val, _values, result)
|
2159
2268
|
result = val[0][:value]
|
2160
2269
|
result
|
2161
2270
|
end
|
2162
2271
|
.,.,
|
2163
2272
|
|
2164
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2165
|
-
def
|
2273
|
+
module_eval(<<'.,.,', 'grammar.ra', 675)
|
2274
|
+
def _reduce_203(val, _values, result)
|
2166
2275
|
result = val[0][:value]
|
2167
2276
|
result
|
2168
2277
|
end
|
2169
2278
|
.,.,
|
2170
2279
|
|
2171
|
-
# reduce
|
2280
|
+
# reduce 204 omitted
|
2172
2281
|
|
2173
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2174
|
-
def
|
2282
|
+
module_eval(<<'.,.,', 'grammar.ra', 679)
|
2283
|
+
def _reduce_205(val, _values, result)
|
2175
2284
|
result = nil
|
2176
2285
|
|
2177
2286
|
result
|
2178
2287
|
end
|
2179
2288
|
.,.,
|
2180
2289
|
|
2181
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2182
|
-
def
|
2290
|
+
module_eval(<<'.,.,', 'grammar.ra', 683)
|
2291
|
+
def _reduce_206(val, _values, result)
|
2183
2292
|
result = ast AST::ASTArray, :children => []
|
2184
2293
|
|
2185
2294
|
result
|
2186
2295
|
end
|
2187
2296
|
.,.,
|
2188
2297
|
|
2189
|
-
# reduce
|
2298
|
+
# reduce 207 omitted
|
2190
2299
|
|
2191
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2192
|
-
def
|
2300
|
+
module_eval(<<'.,.,', 'grammar.ra', 688)
|
2301
|
+
def _reduce_208(val, _values, result)
|
2193
2302
|
result = nil
|
2194
2303
|
|
2195
2304
|
result
|
2196
2305
|
end
|
2197
2306
|
.,.,
|
2198
2307
|
|
2199
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2200
|
-
def
|
2308
|
+
module_eval(<<'.,.,', 'grammar.ra', 691)
|
2309
|
+
def _reduce_209(val, _values, result)
|
2201
2310
|
result = val[1]
|
2202
2311
|
result = [result] unless result[0].is_a?(Array)
|
2203
2312
|
|
@@ -2205,10 +2314,10 @@ module_eval(<<'.,.,', 'grammar.ra', 652)
|
|
2205
2314
|
end
|
2206
2315
|
.,.,
|
2207
2316
|
|
2208
|
-
# reduce
|
2317
|
+
# reduce 210 omitted
|
2209
2318
|
|
2210
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2211
|
-
def
|
2319
|
+
module_eval(<<'.,.,', 'grammar.ra', 697)
|
2320
|
+
def _reduce_211(val, _values, result)
|
2212
2321
|
result = val[0]
|
2213
2322
|
result = [result] unless result[0].is_a?(Array)
|
2214
2323
|
result << val[2]
|
@@ -2217,116 +2326,96 @@ module_eval(<<'.,.,', 'grammar.ra', 658)
|
|
2217
2326
|
end
|
2218
2327
|
.,.,
|
2219
2328
|
|
2220
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2221
|
-
def
|
2222
|
-
|
2223
|
-
result = [val[0][:value], val[2]]
|
2224
|
-
|
2225
|
-
result
|
2226
|
-
end
|
2227
|
-
.,.,
|
2228
|
-
|
2229
|
-
module_eval(<<'.,.,', 'grammar.ra', 668)
|
2230
|
-
def _reduce_192(val, _values, result)
|
2231
|
-
Puppet.warning addcontext("Deprecation notice: must now include '$' in prototype")
|
2232
|
-
result = [val[0][:value]]
|
2233
|
-
|
2234
|
-
result
|
2235
|
-
end
|
2236
|
-
.,.,
|
2237
|
-
|
2238
|
-
module_eval(<<'.,.,', 'grammar.ra', 671)
|
2239
|
-
def _reduce_193(val, _values, result)
|
2240
|
-
result = [val[0][:value], val[2]]
|
2241
|
-
|
2329
|
+
module_eval(<<'.,.,', 'grammar.ra', 703)
|
2330
|
+
def _reduce_212(val, _values, result)
|
2331
|
+
result = [val[0][:value], val[2]]
|
2242
2332
|
result
|
2243
2333
|
end
|
2244
2334
|
.,.,
|
2245
2335
|
|
2246
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2247
|
-
def
|
2248
|
-
|
2249
|
-
|
2336
|
+
module_eval(<<'.,.,', 'grammar.ra', 704)
|
2337
|
+
def _reduce_213(val, _values, result)
|
2338
|
+
result = [val[0][:value]]
|
2250
2339
|
result
|
2251
2340
|
end
|
2252
2341
|
.,.,
|
2253
2342
|
|
2254
|
-
# reduce
|
2343
|
+
# reduce 214 omitted
|
2255
2344
|
|
2256
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2257
|
-
def
|
2345
|
+
module_eval(<<'.,.,', 'grammar.ra', 708)
|
2346
|
+
def _reduce_215(val, _values, result)
|
2258
2347
|
result = val[1]
|
2259
2348
|
|
2260
2349
|
result
|
2261
2350
|
end
|
2262
2351
|
.,.,
|
2263
2352
|
|
2264
|
-
# reduce
|
2353
|
+
# reduce 216 omitted
|
2265
2354
|
|
2266
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2267
|
-
def
|
2355
|
+
module_eval(<<'.,.,', 'grammar.ra', 713)
|
2356
|
+
def _reduce_217(val, _values, result)
|
2268
2357
|
result = val[1]
|
2269
2358
|
|
2270
2359
|
result
|
2271
2360
|
end
|
2272
2361
|
.,.,
|
2273
2362
|
|
2274
|
-
# reduce
|
2363
|
+
# reduce 218 omitted
|
2275
2364
|
|
2276
|
-
# reduce
|
2365
|
+
# reduce 219 omitted
|
2277
2366
|
|
2278
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2279
|
-
def
|
2367
|
+
module_eval(<<'.,.,', 'grammar.ra', 719)
|
2368
|
+
def _reduce_220(val, _values, result)
|
2280
2369
|
result = ast AST::Variable, :value => val[0][:value], :line => val[0][:line]
|
2281
2370
|
|
2282
2371
|
result
|
2283
2372
|
end
|
2284
2373
|
.,.,
|
2285
2374
|
|
2286
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2287
|
-
def
|
2375
|
+
module_eval(<<'.,.,', 'grammar.ra', 722)
|
2376
|
+
def _reduce_221(val, _values, result)
|
2288
2377
|
result = val[1]
|
2289
2378
|
result
|
2290
2379
|
end
|
2291
2380
|
.,.,
|
2292
2381
|
|
2293
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2294
|
-
def
|
2382
|
+
module_eval(<<'.,.,', 'grammar.ra', 723)
|
2383
|
+
def _reduce_222(val, _values, result)
|
2295
2384
|
result = val[1]
|
2296
2385
|
result
|
2297
2386
|
end
|
2298
2387
|
.,.,
|
2299
2388
|
|
2300
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2301
|
-
def
|
2389
|
+
module_eval(<<'.,.,', 'grammar.ra', 724)
|
2390
|
+
def _reduce_223(val, _values, result)
|
2302
2391
|
result = ast AST::ASTArray
|
2303
2392
|
result
|
2304
2393
|
end
|
2305
2394
|
.,.,
|
2306
2395
|
|
2307
|
-
# reduce
|
2396
|
+
# reduce 224 omitted
|
2308
2397
|
|
2309
|
-
# reduce
|
2398
|
+
# reduce 225 omitted
|
2310
2399
|
|
2311
|
-
# reduce
|
2400
|
+
# reduce 226 omitted
|
2312
2401
|
|
2313
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2314
|
-
def
|
2402
|
+
module_eval(<<'.,.,', 'grammar.ra', 730)
|
2403
|
+
def _reduce_227(val, _values, result)
|
2315
2404
|
result = nil
|
2316
2405
|
result
|
2317
2406
|
end
|
2318
2407
|
.,.,
|
2319
2408
|
|
2320
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2321
|
-
def
|
2409
|
+
module_eval(<<'.,.,', 'grammar.ra', 733)
|
2410
|
+
def _reduce_228(val, _values, result)
|
2322
2411
|
result = ast AST::Regex, :value => val[0][:value]
|
2323
2412
|
|
2324
2413
|
result
|
2325
2414
|
end
|
2326
2415
|
.,.,
|
2327
2416
|
|
2328
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2329
|
-
def
|
2417
|
+
module_eval(<<'.,.,', 'grammar.ra', 737)
|
2418
|
+
def _reduce_229(val, _values, result)
|
2330
2419
|
if val[1].instance_of?(AST::ASTHash)
|
2331
2420
|
result = val[1]
|
2332
2421
|
else
|
@@ -2337,8 +2426,8 @@ module_eval(<<'.,.,', 'grammar.ra', 707)
|
|
2337
2426
|
end
|
2338
2427
|
.,.,
|
2339
2428
|
|
2340
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2341
|
-
def
|
2429
|
+
module_eval(<<'.,.,', 'grammar.ra', 744)
|
2430
|
+
def _reduce_230(val, _values, result)
|
2342
2431
|
if val[1].instance_of?(AST::ASTHash)
|
2343
2432
|
result = val[1]
|
2344
2433
|
else
|
@@ -2349,18 +2438,18 @@ module_eval(<<'.,.,', 'grammar.ra', 714)
|
|
2349
2438
|
end
|
2350
2439
|
.,.,
|
2351
2440
|
|
2352
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2353
|
-
def
|
2441
|
+
module_eval(<<'.,.,', 'grammar.ra', 750)
|
2442
|
+
def _reduce_231(val, _values, result)
|
2354
2443
|
result = ast AST::ASTHash
|
2355
2444
|
|
2356
2445
|
result
|
2357
2446
|
end
|
2358
2447
|
.,.,
|
2359
2448
|
|
2360
|
-
# reduce
|
2449
|
+
# reduce 232 omitted
|
2361
2450
|
|
2362
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2363
|
-
def
|
2451
|
+
module_eval(<<'.,.,', 'grammar.ra', 755)
|
2452
|
+
def _reduce_233(val, _values, result)
|
2364
2453
|
if val[0].instance_of?(AST::ASTHash)
|
2365
2454
|
result = val[0].merge(val[2])
|
2366
2455
|
else
|
@@ -2372,40 +2461,40 @@ module_eval(<<'.,.,', 'grammar.ra', 725)
|
|
2372
2461
|
end
|
2373
2462
|
.,.,
|
2374
2463
|
|
2375
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2376
|
-
def
|
2464
|
+
module_eval(<<'.,.,', 'grammar.ra', 764)
|
2465
|
+
def _reduce_234(val, _values, result)
|
2377
2466
|
result = ast AST::ASTHash, { :value => { val[0] => val[2] } }
|
2378
2467
|
|
2379
2468
|
result
|
2380
2469
|
end
|
2381
2470
|
.,.,
|
2382
2471
|
|
2383
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2384
|
-
def
|
2472
|
+
module_eval(<<'.,.,', 'grammar.ra', 767)
|
2473
|
+
def _reduce_235(val, _values, result)
|
2385
2474
|
result = val[0][:value]
|
2386
2475
|
result
|
2387
2476
|
end
|
2388
2477
|
.,.,
|
2389
2478
|
|
2390
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2391
|
-
def
|
2479
|
+
module_eval(<<'.,.,', 'grammar.ra', 768)
|
2480
|
+
def _reduce_236(val, _values, result)
|
2392
2481
|
result = val[0]
|
2393
2482
|
result
|
2394
2483
|
end
|
2395
2484
|
.,.,
|
2396
2485
|
|
2397
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2398
|
-
def
|
2486
|
+
module_eval(<<'.,.,', 'grammar.ra', 771)
|
2487
|
+
def _reduce_237(val, _values, result)
|
2399
2488
|
result = ast AST::HashOrArrayAccess, :variable => val[0][:value], :key => val[2]
|
2400
2489
|
|
2401
2490
|
result
|
2402
2491
|
end
|
2403
2492
|
.,.,
|
2404
2493
|
|
2405
|
-
# reduce
|
2494
|
+
# reduce 238 omitted
|
2406
2495
|
|
2407
|
-
module_eval(<<'.,.,', 'grammar.ra',
|
2408
|
-
def
|
2496
|
+
module_eval(<<'.,.,', 'grammar.ra', 776)
|
2497
|
+
def _reduce_239(val, _values, result)
|
2409
2498
|
result = ast AST::HashOrArrayAccess, :variable => val[0], :key => val[2]
|
2410
2499
|
|
2411
2500
|
result
|