puppet 5.5.22-x86-mingw32 → 6.0.0-x86-mingw32
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.
- checksums.yaml +4 -4
- data/Gemfile +46 -72
- data/Gemfile.lock +86 -102
- data/MAINTAINERS +47 -0
- data/Rakefile +15 -19
- data/ext/build_defaults.yaml +0 -1
- data/ext/cert_inspector +3 -3
- data/ext/debian/copyright +0 -22
- data/ext/project_data.yaml +8 -10
- data/ext/puppet-test +2 -2
- data/ext/redhat/puppet.spec.erb +0 -4
- data/ext/regexp_nodes/regexp_nodes.rb +4 -4
- data/ext/solaris/smf/puppet.xml +0 -2
- data/ext/solaris/smf/svc-puppetd +1 -8
- data/ext/solaris/smf/svc-puppetmasterd +1 -8
- data/ext/windows/eventlog/Rakefile +32 -0
- data/ext/windows/eventlog/puppetres.dll +0 -0
- data/ext/windows/eventlog/puppetres.mc +18 -0
- data/ext/windows/service/daemon.rb +8 -54
- data/install.rb +24 -6
- data/lib/hiera/scope.rb +0 -7
- data/lib/puppet.rb +10 -21
- data/lib/puppet/agent.rb +13 -5
- data/lib/puppet/application.rb +10 -8
- data/lib/puppet/application/agent.rb +3 -21
- data/lib/puppet/application/apply.rb +22 -12
- data/lib/puppet/application/cert.rb +25 -180
- data/lib/puppet/application/describe.rb +9 -3
- data/lib/puppet/application/device.rb +41 -74
- data/lib/puppet/application/doc.rb +5 -3
- data/lib/puppet/application/filebucket.rb +1 -23
- data/lib/puppet/application/lookup.rb +2 -2
- data/lib/puppet/application/resource.rb +4 -4
- data/lib/puppet/application/script.rb +3 -3
- data/lib/puppet/application/ssl.rb +133 -0
- data/lib/puppet/application_support.rb +1 -2
- data/lib/puppet/configurer.rb +62 -127
- data/lib/puppet/configurer/downloader.rb +17 -34
- data/lib/puppet/configurer/fact_handler.rb +5 -1
- data/lib/puppet/configurer/plugin_handler.rb +2 -3
- data/lib/puppet/confine/false.rb +1 -7
- data/lib/puppet/confine/true.rb +1 -7
- data/lib/puppet/daemon.rb +2 -2
- data/lib/puppet/datatypes.rb +1 -1
- data/lib/puppet/defaults.rb +126 -286
- data/lib/puppet/environments.rb +2 -7
- data/lib/puppet/error.rb +14 -10
- data/lib/puppet/etc.rb +4 -25
- data/lib/puppet/external/dot.rb +23 -17
- data/lib/puppet/face/config.rb +50 -12
- data/lib/puppet/face/epp.rb +2 -2
- data/lib/puppet/face/facts.rb +1 -1
- data/lib/puppet/face/help.rb +21 -7
- data/lib/puppet/face/help/global.erb +2 -2
- data/lib/puppet/face/module/build.rb +4 -59
- data/lib/puppet/face/module/generate.rb +5 -247
- data/lib/puppet/face/module/install.rb +0 -4
- data/lib/puppet/face/module/list.rb +5 -10
- data/lib/puppet/face/module/search.rb +2 -2
- data/lib/puppet/face/module/uninstall.rb +1 -5
- data/lib/puppet/face/module/upgrade.rb +1 -5
- data/lib/puppet/face/node/clean.rb +14 -10
- data/lib/puppet/face/plugin.rb +2 -9
- data/lib/puppet/feature/base.rb +7 -26
- data/lib/puppet/feature/eventlog.rb +1 -1
- data/lib/puppet/file_bucket/dipper.rb +1 -1
- data/lib/puppet/file_serving/base.rb +7 -7
- data/lib/puppet/file_serving/fileset.rb +2 -2
- data/lib/puppet/file_serving/http_metadata.rb +1 -1
- data/lib/puppet/file_serving/metadata.rb +4 -3
- data/lib/puppet/file_serving/mount/locales.rb +2 -1
- data/lib/puppet/file_serving/mount/pluginfacts.rb +2 -1
- data/lib/puppet/file_serving/mount/plugins.rb +2 -1
- data/lib/puppet/file_system.rb +8 -0
- data/lib/puppet/file_system/memory_file.rb +1 -1
- data/lib/puppet/file_system/posix.rb +2 -3
- data/lib/puppet/file_system/uniquefile.rb +0 -4
- data/lib/puppet/forge.rb +8 -12
- data/lib/puppet/functions.rb +138 -0
- data/lib/puppet/functions/abs.rb +61 -0
- data/lib/puppet/functions/call.rb +38 -2
- data/lib/puppet/functions/camelcase.rb +62 -0
- data/lib/puppet/functions/capitalize.rb +61 -0
- data/lib/puppet/functions/ceiling.rb +37 -0
- data/lib/puppet/functions/chomp.rb +57 -0
- data/lib/puppet/functions/chop.rb +67 -0
- data/lib/puppet/functions/compare.rb +125 -0
- data/lib/puppet/functions/convert_to.rb +3 -2
- data/lib/puppet/functions/dig.rb +21 -1
- data/lib/puppet/functions/downcase.rb +89 -0
- data/lib/puppet/functions/epp.rb +4 -4
- data/lib/puppet/functions/eyaml_lookup_key.rb +4 -5
- data/lib/puppet/functions/filter.rb +7 -6
- data/lib/puppet/functions/floor.rb +37 -0
- data/lib/puppet/functions/get.rb +150 -0
- data/lib/puppet/functions/getvar.rb +87 -0
- data/lib/puppet/functions/inline_epp.rb +5 -5
- data/lib/puppet/functions/lstrip.rb +58 -0
- data/lib/puppet/functions/max.rb +183 -0
- data/lib/puppet/functions/min.rb +182 -0
- data/lib/puppet/functions/new.rb +3 -8
- data/lib/puppet/functions/reduce.rb +4 -2
- data/lib/puppet/functions/reverse_each.rb +1 -1
- data/lib/puppet/functions/round.rb +24 -0
- data/lib/puppet/functions/rstrip.rb +58 -0
- data/lib/puppet/functions/size.rb +15 -0
- data/lib/puppet/functions/sort.rb +74 -0
- data/lib/puppet/functions/step.rb +1 -1
- data/lib/puppet/functions/strip.rb +58 -0
- data/lib/puppet/functions/upcase.rb +89 -0
- data/lib/puppet/functions/yaml_data.rb +4 -5
- data/lib/puppet/gettext/config.rb +1 -1
- data/lib/puppet/gettext/module_translations.rb +1 -1
- data/lib/puppet/graph.rb +0 -2
- data/lib/puppet/graph/rb_tree_map.rb +2 -2
- data/lib/puppet/graph/simple_graph.rb +10 -7
- data/lib/puppet/indirector/catalog/compiler.rb +0 -8
- data/lib/puppet/indirector/catalog/json.rb +14 -3
- data/lib/puppet/indirector/catalog/yaml.rb +0 -16
- data/lib/puppet/indirector/certificate/file.rb +0 -1
- data/lib/puppet/indirector/facts/yaml.rb +4 -2
- data/lib/puppet/indirector/file_bucket_file/file.rb +1 -1
- data/lib/puppet/indirector/hiera.rb +0 -6
- data/lib/puppet/indirector/indirection.rb +8 -12
- data/lib/puppet/indirector/key/file.rb +1 -6
- data/lib/puppet/indirector/node/exec.rb +1 -3
- data/lib/puppet/indirector/node/yaml.rb +0 -6
- data/lib/puppet/indirector/request.rb +20 -27
- data/lib/puppet/indirector/resource/ral.rb +3 -1
- data/lib/puppet/indirector/resource/validator.rb +1 -1
- data/lib/puppet/indirector/rest.rb +7 -65
- data/lib/puppet/indirector/ssl_file.rb +3 -44
- data/lib/puppet/indirector/terminus.rb +1 -1
- data/lib/puppet/indirector/yaml.rb +4 -4
- data/lib/puppet/info_service/task_information_service.rb +7 -3
- data/lib/puppet/interface.rb +2 -3
- data/lib/puppet/interface/action.rb +2 -5
- data/lib/puppet/interface/face_collection.rb +3 -1
- data/lib/puppet/loaders.rb +2 -0
- data/lib/puppet/metatype/manager.rb +3 -5
- data/lib/puppet/module.rb +5 -31
- data/lib/puppet/module/task.rb +208 -30
- data/lib/puppet/module_tool.rb +2 -5
- data/lib/puppet/module_tool/applications.rb +0 -1
- data/lib/puppet/module_tool/applications/application.rb +1 -1
- data/lib/puppet/module_tool/applications/installer.rb +7 -8
- data/lib/puppet/module_tool/applications/uninstaller.rb +4 -5
- data/lib/puppet/module_tool/applications/unpacker.rb +1 -1
- data/lib/puppet/module_tool/applications/upgrader.rb +5 -6
- data/lib/puppet/module_tool/installed_modules.rb +2 -2
- data/lib/puppet/module_tool/local_tarball.rb +3 -3
- data/lib/puppet/module_tool/metadata.rb +1 -2
- data/lib/puppet/module_tool/shared_behaviors.rb +6 -6
- data/lib/puppet/module_tool/tar/mini.rb +2 -12
- data/lib/puppet/network/authconfig.rb +0 -13
- data/lib/puppet/network/format_support.rb +13 -8
- data/lib/puppet/network/formats.rb +93 -2
- data/lib/puppet/network/http.rb +0 -2
- data/lib/puppet/network/http/api.rb +1 -10
- data/lib/puppet/network/http/api/indirected_routes.rb +22 -16
- data/lib/puppet/network/http/api/master/v3/environment.rb +0 -3
- data/lib/puppet/network/http/connection.rb +14 -57
- data/lib/puppet/network/http/factory.rb +13 -7
- data/lib/puppet/network/http/handler.rb +59 -27
- data/lib/puppet/network/http/pool.rb +1 -7
- data/lib/puppet/network/http/site.rb +1 -1
- data/lib/puppet/network/resolver.rb +140 -67
- data/lib/puppet/node.rb +1 -2
- data/lib/puppet/node/environment.rb +5 -30
- data/lib/puppet/node/facts.rb +11 -1
- data/lib/puppet/parameter.rb +4 -7
- data/lib/puppet/parser/ast.rb +5 -9
- data/lib/puppet/parser/ast/branch.rb +3 -3
- data/lib/puppet/parser/ast/leaf.rb +5 -0
- data/lib/puppet/parser/ast/resourceparam.rb +1 -1
- data/lib/puppet/parser/catalog_compiler.rb +32 -0
- data/lib/puppet/parser/compiler.rb +2 -3
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +0 -2
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +0 -2
- data/lib/puppet/parser/environment_compiler.rb +0 -3
- data/lib/puppet/parser/functions.rb +48 -18
- data/lib/puppet/parser/functions/epp.rb +3 -3
- data/lib/puppet/parser/functions/filter.rb +1 -1
- data/lib/puppet/parser/functions/generate.rb +1 -1
- data/lib/puppet/parser/functions/inline_epp.rb +5 -5
- data/lib/puppet/parser/resource.rb +2 -4
- data/lib/puppet/parser/resource/param.rb +12 -11
- data/lib/puppet/parser/scope.rb +6 -8
- data/lib/puppet/parser/script_compiler.rb +7 -2
- data/lib/puppet/pops.rb +1 -0
- data/lib/puppet/pops/adaptable.rb +13 -7
- data/lib/puppet/pops/adapters.rb +18 -8
- data/lib/puppet/pops/evaluator/access_operator.rb +2 -2
- data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +4 -4
- data/lib/puppet/pops/evaluator/collectors/catalog_collector.rb +1 -1
- data/lib/puppet/pops/evaluator/collectors/exported_collector.rb +1 -1
- data/lib/puppet/pops/evaluator/compare_operator.rb +3 -1
- data/lib/puppet/pops/evaluator/deferred_resolver.rb +127 -0
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +17 -2
- data/lib/puppet/pops/evaluator/external_syntax_support.rb +2 -3
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +23 -4
- data/lib/puppet/pops/evaluator/runtime3_support.rb +7 -8
- data/lib/puppet/pops/functions/dispatch.rb +6 -0
- data/lib/puppet/pops/issues.rb +9 -10
- data/lib/puppet/pops/loader/loader.rb +1 -1
- data/lib/puppet/pops/loader/loader_paths.rb +5 -3
- data/lib/puppet/pops/loader/module_loaders.rb +47 -21
- data/lib/puppet/pops/loader/null_loader.rb +60 -0
- data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +54 -0
- data/lib/puppet/pops/loader/static_loader.rb +0 -36
- data/lib/puppet/pops/loader/task_instantiator.rb +72 -44
- data/lib/puppet/pops/loaders.rb +21 -33
- data/lib/puppet/pops/lookup/hiera_config.rb +1 -2
- data/lib/puppet/pops/lookup/sub_lookup.rb +1 -1
- data/lib/puppet/pops/merge_strategy.rb +18 -22
- data/lib/puppet/pops/model/ast.pp +16 -0
- data/lib/puppet/pops/model/ast.rb +94 -0
- data/lib/puppet/pops/model/factory.rb +17 -38
- data/lib/puppet/pops/model/model_label_provider.rb +8 -1
- data/lib/puppet/pops/parser/egrammar.ra +14 -3
- data/lib/puppet/pops/parser/eparser.rb +1537 -1492
- data/lib/puppet/pops/parser/epp_support.rb +6 -2
- data/lib/puppet/pops/parser/heredoc_support.rb +8 -17
- data/lib/puppet/pops/parser/interpolation_support.rb +4 -4
- data/lib/puppet/pops/parser/lexer2.rb +2 -7
- data/lib/puppet/pops/parser/locator.rb +87 -107
- data/lib/puppet/pops/parser/parser_support.rb +2 -11
- data/lib/puppet/pops/parser/pn_parser.rb +16 -17
- data/lib/puppet/pops/pcore.rb +19 -8
- data/lib/puppet/pops/puppet_stack.rb +48 -51
- data/lib/puppet/pops/resource/resource_type_impl.rb +0 -2
- data/lib/puppet/pops/serialization.rb +3 -2
- data/lib/puppet/pops/serialization/from_data_converter.rb +4 -3
- data/lib/puppet/pops/serialization/to_data_converter.rb +3 -3
- data/lib/puppet/pops/serialization/to_stringified_converter.rb +226 -0
- data/lib/puppet/pops/types/iterable.rb +8 -34
- data/lib/puppet/pops/types/p_binary_type.rb +1 -2
- data/lib/puppet/pops/types/p_meta_type.rb +1 -1
- data/lib/puppet/pops/types/p_object_type.rb +3 -0
- data/lib/puppet/pops/types/p_sensitive_type.rb +1 -1
- data/lib/puppet/pops/types/p_timespan_type.rb +2 -2
- data/lib/puppet/pops/types/p_type_set_type.rb +0 -4
- data/lib/puppet/pops/types/string_converter.rb +12 -21
- data/lib/puppet/pops/types/type_calculator.rb +0 -24
- data/lib/puppet/pops/types/type_factory.rb +17 -0
- data/lib/puppet/pops/types/type_mismatch_describer.rb +1 -1
- data/lib/puppet/pops/types/types.rb +7 -32
- data/lib/puppet/pops/validation/checker4_0.rb +23 -33
- data/lib/puppet/pops/validation/tasks_checker.rb +47 -6
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +7 -10
- data/lib/puppet/property.rb +1 -1
- data/lib/puppet/property/ensure.rb +1 -1
- data/lib/puppet/provider.rb +14 -2
- data/lib/puppet/provider/exec.rb +58 -59
- data/lib/puppet/provider/file/posix.rb +0 -5
- data/lib/puppet/provider/file/windows.rb +2 -50
- data/lib/puppet/provider/group/aix.rb +2 -18
- data/lib/puppet/provider/group/groupadd.rb +19 -19
- data/lib/puppet/provider/group/windows_adsi.rb +4 -11
- data/lib/puppet/provider/nameservice.rb +28 -11
- data/lib/puppet/provider/nameservice/directoryservice.rb +1 -1
- data/lib/puppet/provider/nameservice/pw.rb +2 -2
- data/lib/puppet/provider/package.rb +0 -2
- data/lib/puppet/provider/package/aix.rb +2 -17
- data/lib/puppet/provider/package/apt.rb +3 -14
- data/lib/puppet/provider/package/dnf.rb +3 -3
- data/lib/puppet/provider/package/dpkg.rb +7 -18
- data/lib/puppet/provider/package/fink.rb +3 -20
- data/lib/puppet/provider/package/gem.rb +43 -105
- data/lib/puppet/provider/package/openbsd.rb +2 -14
- data/lib/puppet/provider/package/pip.rb +108 -160
- data/lib/puppet/provider/package/pip3.rb +1 -1
- data/lib/puppet/provider/package/pkg.rb +5 -18
- data/lib/puppet/provider/package/pkgdmg.rb +1 -1
- data/lib/puppet/provider/package/pkgng.rb +4 -16
- data/lib/puppet/provider/package/portage.rb +6 -6
- data/lib/puppet/provider/package/puppet_gem.rb +2 -7
- data/lib/puppet/provider/package/rpm.rb +33 -82
- data/lib/puppet/provider/package/windows.rb +2 -6
- data/lib/puppet/provider/package/windows/exe_package.rb +10 -16
- data/lib/puppet/provider/package/windows/msi_package.rb +0 -8
- data/lib/puppet/provider/package/windows/package.rb +2 -10
- data/lib/puppet/provider/package/yum.rb +25 -37
- data/lib/puppet/provider/package/zypper.rb +0 -1
- data/lib/puppet/provider/parsedfile.rb +5 -26
- data/lib/puppet/provider/service/base.rb +1 -1
- data/lib/puppet/provider/service/daemontools.rb +9 -9
- data/lib/puppet/provider/service/debian.rb +1 -0
- data/lib/puppet/provider/service/launchd.rb +8 -39
- data/lib/puppet/provider/service/openbsd.rb +1 -1
- data/lib/puppet/provider/service/rcng.rb +2 -2
- data/lib/puppet/provider/service/runit.rb +8 -2
- data/lib/puppet/provider/service/smf.rb +0 -54
- data/lib/puppet/provider/service/systemd.rb +24 -35
- data/lib/puppet/provider/service/upstart.rb +1 -3
- data/lib/puppet/provider/service/windows.rb +3 -23
- data/lib/puppet/provider/user/aix.rb +2 -48
- data/lib/puppet/provider/user/directoryservice.rb +8 -45
- data/lib/puppet/provider/user/hpux.rb +1 -1
- data/lib/puppet/provider/user/pw.rb +3 -12
- data/lib/puppet/provider/user/user_role_add.rb +1 -5
- data/lib/puppet/provider/user/useradd.rb +44 -74
- data/lib/puppet/provider/user/windows_adsi.rb +0 -7
- data/lib/puppet/reference/indirection.rb +2 -2
- data/lib/puppet/reference/metaparameter.rb +3 -1
- data/lib/puppet/reference/providers.rb +1 -1
- data/lib/puppet/reference/type.rb +9 -3
- data/lib/puppet/reports.rb +3 -3
- data/lib/puppet/resource.rb +22 -22
- data/lib/puppet/resource/catalog.rb +8 -14
- data/lib/puppet/resource/type.rb +1 -10
- data/lib/puppet/rest/client.rb +83 -0
- data/lib/puppet/rest/errors.rb +14 -0
- data/lib/puppet/rest/response.rb +34 -0
- data/lib/puppet/rest/route.rb +84 -0
- data/lib/puppet/rest/routes.rb +154 -0
- data/lib/puppet/rest/ssl_context.rb +13 -0
- data/lib/puppet/settings.rb +9 -54
- data/lib/puppet/settings/config_file.rb +1 -2
- data/lib/puppet/settings/environment_conf.rb +0 -1
- data/lib/puppet/settings/file_setting.rb +1 -1
- data/lib/puppet/settings/server_list_setting.rb +0 -9
- data/lib/puppet/ssl.rb +0 -1
- data/lib/puppet/ssl/base.rb +1 -9
- data/lib/puppet/ssl/certificate.rb +7 -4
- data/lib/puppet/ssl/certificate_request.rb +6 -14
- data/lib/puppet/ssl/certificate_request_attributes.rb +1 -1
- data/lib/puppet/ssl/host.rb +400 -174
- data/lib/puppet/ssl/key.rb +1 -5
- data/lib/puppet/ssl/oids.rb +3 -3
- data/lib/puppet/ssl/validator/default_validator.rb +33 -49
- data/lib/puppet/test/test_helper.rb +12 -18
- data/lib/puppet/transaction.rb +7 -12
- data/lib/puppet/transaction/event.rb +37 -14
- data/lib/puppet/transaction/event_manager.rb +3 -11
- data/lib/puppet/transaction/persistence.rb +1 -1
- data/lib/puppet/transaction/report.rb +1 -1
- data/lib/puppet/transaction/resource_harness.rb +2 -5
- data/lib/puppet/type.rb +7 -10
- data/lib/puppet/type/exec.rb +16 -50
- data/lib/puppet/type/file.rb +7 -16
- data/lib/puppet/type/file/content.rb +2 -3
- data/lib/puppet/type/file/data_sync.rb +1 -5
- data/lib/puppet/type/file/mode.rb +2 -7
- data/lib/puppet/type/file/source.rb +2 -1
- data/lib/puppet/type/filebucket.rb +8 -12
- data/lib/puppet/type/group.rb +3 -33
- data/lib/puppet/type/notify.rb +2 -3
- data/lib/puppet/type/package.rb +18 -154
- data/lib/puppet/type/resources.rb +2 -12
- data/lib/puppet/type/schedule.rb +34 -96
- data/lib/puppet/type/service.rb +10 -9
- data/lib/puppet/type/tidy.rb +1 -1
- data/lib/puppet/type/user.rb +30 -14
- data/lib/puppet/util.rb +28 -52
- data/lib/puppet/util/autoload.rb +62 -56
- data/lib/puppet/util/character_encoding.rb +0 -22
- data/lib/puppet/util/classgen.rb +0 -6
- data/lib/puppet/util/command_line.rb +4 -7
- data/lib/puppet/util/command_line/trollop.rb +1 -1
- data/lib/puppet/util/connection.rb +74 -0
- data/lib/puppet/util/execution.rb +7 -22
- data/lib/puppet/util/feature.rb +63 -41
- data/lib/puppet/util/fileparsing.rb +27 -5
- data/lib/puppet/util/filetype.rb +8 -56
- data/lib/puppet/util/http_proxy.rb +18 -27
- data/lib/puppet/util/instance_loader.rb +3 -21
- data/lib/puppet/util/json.rb +0 -8
- data/lib/puppet/util/ldap/connection.rb +7 -7
- data/lib/puppet/util/log.rb +3 -8
- data/lib/puppet/util/log/destinations.rb +13 -5
- data/lib/puppet/util/logging.rb +19 -31
- data/lib/puppet/util/metric.rb +2 -2
- data/lib/puppet/util/monkey_patches.rb +1 -1
- data/lib/puppet/util/network_device/base.rb +1 -1
- data/lib/puppet/util/pidlock.rb +3 -23
- data/lib/puppet/util/platform.rb +3 -0
- data/lib/puppet/util/plist.rb +0 -6
- data/lib/puppet/util/posix.rb +0 -15
- data/lib/puppet/util/provider_features.rb +6 -7
- data/lib/puppet/util/rdoc.rb +2 -2
- data/lib/puppet/util/rdoc/parser/puppet_parser_core.rb +1 -1
- data/lib/puppet/util/reference.rb +8 -7
- data/lib/puppet/util/resource_template.rb +1 -1
- data/lib/puppet/util/rubygems.rb +1 -13
- data/lib/puppet/util/run_mode.rb +1 -1
- data/lib/puppet/util/selinux.rb +3 -9
- data/lib/puppet/util/ssl.rb +40 -1
- data/lib/puppet/util/storage.rb +1 -13
- data/lib/puppet/util/suidmanager.rb +7 -5
- data/lib/puppet/util/tag_set.rb +1 -1
- data/lib/puppet/util/tagging.rb +1 -1
- data/lib/puppet/util/windows.rb +15 -0
- data/lib/puppet/util/windows/adsi.rb +7 -116
- data/lib/puppet/util/windows/api_types.rb +33 -46
- data/lib/puppet/util/windows/eventlog.rb +6 -1
- data/lib/puppet/util/windows/principal.rb +6 -8
- data/lib/puppet/util/windows/process.rb +3 -94
- data/lib/puppet/util/windows/registry.rb +14 -46
- data/lib/puppet/util/windows/security.rb +2 -40
- data/lib/puppet/util/windows/service.rb +72 -431
- data/lib/puppet/util/windows/sid.rb +3 -4
- data/lib/puppet/util/windows/user.rb +9 -17
- data/lib/puppet/util/yaml.rb +41 -5
- data/lib/puppet/vendor.rb +1 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet_pal.rb +246 -23
- data/locales/ja/puppet.po +11128 -0
- data/locales/puppet.pot +1321 -2527
- data/man/man5/puppet.conf.5 +31 -191
- data/man/man8/puppet-agent.8 +2 -2
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +3 -3
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +19 -23
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +2 -21
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-key.8 +1 -7
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-module.8 +10 -100
- data/man/man8/puppet-node.8 +4 -7
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +28 -0
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +12 -3
- data/spec/fixtures/unit/functions/hiera/hiera/backend/hieraspec_backend.rb +22 -0
- data/spec/fixtures/unit/functions/lookup/hiera/backend/custom_backend.rb +18 -0
- data/spec/fixtures/unit/functions/lookup/hiera/backend/other_backend.rb +7 -0
- data/spec/fixtures/unit/pops/loaders/loaders/dependent_modules_with_metadata/modules/user/manifests/init.pp +6 -6
- data/spec/fixtures/unit/provider/package/pkgng/pkg.info +0 -1
- data/spec/fixtures/unit/provider/package/pkgng/pkg.version +0 -2
- data/spec/fixtures/unit/provider/service/systemd/list_unit_files_services +0 -9
- data/spec/integration/agent/logging_spec.rb +9 -7
- data/spec/integration/application/apply_spec.rb +31 -26
- data/spec/integration/application/doc_spec.rb +2 -1
- data/spec/integration/application/lookup_spec.rb +5 -5
- data/spec/integration/configurer_spec.rb +8 -76
- data/spec/integration/data_binding_spec.rb +1 -1
- data/spec/integration/defaults_spec.rb +13 -16
- data/spec/integration/directory_environments_spec.rb +1 -1
- data/spec/integration/faces/config_spec.rb +4 -3
- data/spec/integration/faces/documentation_spec.rb +1 -0
- data/spec/integration/faces/plugin_spec.rb +49 -29
- data/spec/integration/file_bucket/file_spec.rb +4 -19
- data/spec/integration/file_serving/content_spec.rb +1 -0
- data/spec/integration/file_serving/fileset_spec.rb +1 -0
- data/spec/integration/file_serving/metadata_spec.rb +1 -0
- data/spec/integration/file_serving/terminus_helper_spec.rb +1 -0
- data/spec/integration/file_system/uniquefile_spec.rb +26 -29
- data/spec/integration/indirector/catalog/compiler_spec.rb +11 -10
- data/spec/integration/indirector/direct_file_server_spec.rb +1 -1
- data/spec/integration/indirector/facts/facter_spec.rb +8 -22
- data/spec/integration/indirector/file_content/file_server_spec.rb +8 -7
- data/spec/integration/indirector/file_metadata/file_server_spec.rb +8 -7
- data/spec/integration/network/authconfig_spec.rb +24 -23
- data/spec/integration/network/formats_spec.rb +1 -0
- data/spec/integration/network/http/api/indirected_routes_spec.rb +6 -34
- data/spec/integration/node/environment_spec.rb +2 -1
- data/spec/integration/node/facts_spec.rb +10 -9
- data/spec/integration/node_spec.rb +7 -10
- data/spec/integration/parser/catalog_spec.rb +8 -6
- data/spec/integration/parser/collection_spec.rb +9 -4
- data/spec/integration/parser/compiler_spec.rb +7 -25
- data/spec/integration/parser/scope_spec.rb +1 -1
- data/spec/integration/parser/undef_param_spec.rb +1 -1
- data/spec/integration/provider/service/init_spec.rb +9 -6
- data/spec/integration/provider/service/systemd_spec.rb +14 -11
- data/spec/integration/provider/service/windows_spec.rb +11 -8
- data/spec/integration/reference/providers_spec.rb +7 -0
- data/spec/integration/reports_spec.rb +2 -1
- data/spec/integration/resource/catalog_spec.rb +17 -14
- data/spec/integration/resource/type_collection_spec.rb +5 -4
- data/spec/integration/ssl/certificate_request_spec.rb +1 -2
- data/spec/integration/ssl/host_spec.rb +17 -24
- data/spec/integration/ssl/key_spec.rb +7 -2
- data/spec/integration/test/test_helper_spec.rb +32 -0
- data/spec/integration/transaction/report_spec.rb +14 -9
- data/spec/integration/type/exec_spec.rb +2 -1
- data/spec/integration/type/file_spec.rb +38 -46
- data/spec/integration/type/package_spec.rb +25 -21
- data/spec/integration/type/tidy_spec.rb +2 -1
- data/spec/integration/type_spec.rb +1 -0
- data/spec/integration/util/autoload_spec.rb +11 -7
- data/spec/integration/util/execution_spec.rb +5 -32
- data/spec/integration/util/rdoc/parser_spec.rb +14 -23
- data/spec/integration/util/settings_spec.rb +2 -1
- data/spec/integration/util/windows/adsi_spec.rb +8 -11
- data/spec/integration/util/windows/principal_spec.rb +2 -1
- data/spec/integration/util/windows/process_spec.rb +9 -7
- data/spec/integration/util/windows/registry_spec.rb +46 -127
- data/spec/integration/util/windows/security_spec.rb +15 -16
- data/spec/integration/util/windows/user_spec.rb +29 -66
- data/spec/integration/util_spec.rb +10 -7
- data/spec/lib/matchers/json.rb +12 -18
- data/{lib/puppet/ssl → spec/lib/puppet}/certificate_factory.rb +5 -6
- data/spec/lib/puppet/test_ca.rb +109 -0
- data/spec/lib/puppet_spec/compiler.rb +28 -1
- data/spec/lib/puppet_spec/files.rb +29 -23
- data/spec/lib/puppet_spec/module_tool/shared_functions.rb +1 -1
- data/spec/lib/puppet_spec/modules.rb +11 -1
- data/spec/lib/puppet_spec/scope.rb +2 -1
- data/spec/lib/puppet_spec/ssl.rb +265 -0
- data/spec/lib/puppet_spec/validators.rb +37 -0
- data/spec/shared_behaviours/all_parsedfile_providers.rb +1 -1
- data/spec/shared_behaviours/file_server_terminus.rb +9 -8
- data/spec/shared_behaviours/file_serving.rb +8 -6
- data/spec/shared_behaviours/file_serving_model.rb +5 -22
- data/spec/shared_behaviours/hiera_indirections.rb +4 -3
- data/spec/shared_behaviours/iterative_functions.rb +1 -0
- data/spec/shared_behaviours/memory_terminus.rb +2 -2
- data/spec/shared_behaviours/path_parameters.rb +1 -1
- data/spec/shared_contexts/types_setup.rb +0 -2
- data/spec/shared_examples/rhel_package_provider.rb +70 -112
- data/spec/spec_helper.rb +1 -15
- data/spec/unit/agent/disabler_spec.rb +5 -4
- data/spec/unit/agent/locker_spec.rb +13 -12
- data/spec/unit/agent_spec.rb +102 -105
- data/spec/unit/application/agent_spec.rb +95 -114
- data/spec/unit/application/apply_spec.rb +92 -119
- data/spec/unit/application/config_spec.rb +1 -0
- data/spec/unit/application/describe_spec.rb +7 -6
- data/spec/unit/application/device_spec.rb +180 -181
- data/spec/unit/application/doc_spec.rb +46 -44
- data/spec/unit/application/face_base_spec.rb +62 -61
- data/spec/unit/application/facts_spec.rb +4 -3
- data/spec/unit/application/filebucket_spec.rb +74 -66
- data/spec/unit/application/indirection_base_spec.rb +6 -8
- data/spec/unit/application/lookup_spec.rb +44 -37
- data/spec/unit/application/resource_spec.rb +48 -42
- data/spec/unit/application/ssl_spec.rb +322 -0
- data/spec/unit/application_spec.rb +108 -90
- data/spec/unit/capability_spec.rb +15 -16
- data/spec/unit/{ssl/certificate_factory_spec.rb → certificate_factory_spec.rb} +13 -20
- data/spec/unit/configurer/downloader_spec.rb +22 -31
- data/spec/unit/configurer/fact_handler_spec.rb +7 -2
- data/spec/unit/configurer/plugin_handler_spec.rb +8 -41
- data/spec/unit/configurer_spec.rb +475 -520
- data/spec/unit/confine/exists_spec.rb +15 -17
- data/spec/unit/confine/false_spec.rb +6 -32
- data/spec/unit/confine/feature_spec.rb +5 -7
- data/spec/unit/confine/true_spec.rb +6 -32
- data/spec/unit/confine/variable_spec.rb +15 -14
- data/spec/unit/confine_collection_spec.rb +29 -28
- data/spec/unit/confine_spec.rb +14 -13
- data/spec/unit/confiner_spec.rb +11 -10
- data/spec/unit/context/trusted_information_spec.rb +4 -3
- data/spec/unit/daemon_spec.rb +38 -35
- data/spec/unit/data_providers/function_data_provider_spec.rb +1 -0
- data/spec/unit/data_providers/hiera_data_provider_spec.rb +1 -0
- data/spec/unit/datatypes_spec.rb +4 -3
- data/spec/unit/defaults_spec.rb +61 -32
- data/spec/unit/environments_spec.rb +7 -7
- data/spec/unit/etc_spec.rb +29 -52
- data/spec/unit/external/pson_spec.rb +1 -0
- data/spec/unit/face/catalog_spec.rb +1 -0
- data/spec/unit/face/config_spec.rb +35 -31
- data/spec/unit/face/epp_face_spec.rb +4 -3
- data/spec/unit/face/facts_spec.rb +6 -14
- data/spec/unit/face/generate_spec.rb +5 -4
- data/spec/unit/face/help_spec.rb +8 -7
- data/spec/unit/face/key_spec.rb +1 -0
- data/spec/unit/face/man_spec.rb +2 -1
- data/spec/unit/face/module/install_spec.rb +5 -3
- data/spec/unit/face/module/list_spec.rb +12 -62
- data/spec/unit/face/module/search_spec.rb +9 -11
- data/spec/unit/face/module/uninstall_spec.rb +8 -4
- data/spec/unit/face/node_spec.rb +30 -52
- data/spec/unit/face/parser_spec.rb +3 -3
- data/spec/unit/face/plugin_spec.rb +9 -44
- data/spec/unit/face/status_spec.rb +1 -0
- data/spec/unit/file_bucket/dipper_spec.rb +24 -28
- data/spec/unit/file_bucket/file_spec.rb +2 -0
- data/spec/unit/file_serving/base_spec.rb +18 -20
- data/spec/unit/file_serving/configuration/parser_spec.rb +28 -27
- data/spec/unit/file_serving/configuration_spec.rb +66 -63
- data/spec/unit/file_serving/content_spec.rb +11 -10
- data/spec/unit/file_serving/fileset_spec.rb +58 -63
- data/spec/unit/file_serving/http_metadata_spec.rb +7 -8
- data/spec/unit/file_serving/metadata_spec.rb +40 -40
- data/spec/unit/file_serving/mount/file_spec.rb +32 -31
- data/spec/unit/file_serving/mount/locales_spec.rb +26 -25
- data/spec/unit/file_serving/mount/modules_spec.rb +15 -14
- data/spec/unit/file_serving/mount/pluginfacts_spec.rb +26 -25
- data/spec/unit/file_serving/mount/plugins_spec.rb +26 -25
- data/spec/unit/file_serving/mount/tasks_spec.rb +15 -14
- data/spec/unit/file_serving/mount_spec.rb +1 -0
- data/spec/unit/file_serving/terminus_helper_spec.rb +42 -37
- data/spec/unit/file_serving/terminus_selector_spec.rb +13 -12
- data/spec/unit/file_system/path_pattern_spec.rb +1 -1
- data/spec/unit/file_system/uniquefile_spec.rb +6 -17
- data/spec/unit/file_system_spec.rb +9 -6
- data/spec/unit/forge/errors_spec.rb +1 -1
- data/spec/unit/forge/forge_spec.rb +16 -15
- data/spec/unit/forge/module_release_spec.rb +18 -18
- data/spec/unit/forge/repository_spec.rb +30 -27
- data/spec/unit/forge_spec.rb +11 -15
- data/spec/unit/functions/abs_spec.rb +70 -0
- data/spec/unit/functions/binary_file_spec.rb +3 -3
- data/spec/unit/functions/call_spec.rb +59 -5
- data/spec/unit/functions/camelcase_spec.rb +34 -0
- data/spec/unit/functions/capitalize_spec.rb +34 -0
- data/spec/unit/functions/ceiling_spec.rb +65 -0
- data/spec/unit/functions/chomp_spec.rb +46 -0
- data/spec/unit/functions/chop_spec.rb +38 -0
- data/spec/unit/functions/compare_spec.rb +147 -0
- data/spec/unit/functions/contain_spec.rb +2 -0
- data/spec/unit/functions/convert_to_spec.rb +3 -0
- data/spec/unit/functions/defined_spec.rb +1 -0
- data/spec/unit/functions/downcase_spec.rb +34 -0
- data/spec/unit/functions/epp_spec.rb +2 -2
- data/spec/unit/functions/filter_spec.rb +4 -4
- data/spec/unit/functions/find_file_spec.rb +7 -7
- data/spec/unit/functions/floor_spec.rb +65 -0
- data/spec/unit/functions/get_spec.rb +135 -0
- data/spec/unit/functions/getvar_spec.rb +121 -0
- data/spec/unit/functions/hiera_spec.rb +14 -48
- data/spec/unit/functions/include_spec.rb +4 -0
- data/spec/unit/functions/lookup_fixture_spec.rb +1 -0
- data/spec/unit/functions/lookup_spec.rb +37 -62
- data/spec/unit/functions/lstrip_spec.rb +30 -0
- data/spec/unit/functions/match_spec.rb +3 -4
- data/spec/unit/functions/max_spec.rb +129 -0
- data/spec/unit/functions/min_spec.rb +129 -0
- data/spec/unit/functions/module_directory_spec.rb +12 -12
- data/spec/unit/functions/new_spec.rb +0 -15
- data/spec/unit/functions/regsubst_spec.rb +3 -4
- data/spec/unit/functions/require_spec.rb +3 -0
- data/spec/unit/functions/round_spec.rb +41 -0
- data/spec/unit/functions/rstrip_spec.rb +30 -0
- data/spec/unit/functions/shared.rb +8 -5
- data/spec/unit/functions/size_spec.rb +50 -0
- data/spec/unit/functions/sort_spec.rb +79 -0
- data/spec/unit/functions/split_spec.rb +3 -4
- data/spec/unit/functions/strip_spec.rb +30 -0
- data/spec/unit/functions/upcase_spec.rb +34 -0
- data/spec/unit/functions/versioncmp_spec.rb +4 -4
- data/spec/unit/functions4_spec.rb +78 -51
- data/spec/unit/gettext/config_spec.rb +4 -4
- data/spec/unit/gettext/module_loading_spec.rb +7 -7
- data/spec/unit/graph/rb_tree_map_spec.rb +2 -0
- data/spec/unit/graph/relationship_graph_spec.rb +2 -1
- data/spec/unit/graph/simple_graph_spec.rb +52 -11
- data/spec/unit/hiera/scope_spec.rb +0 -7
- data/spec/unit/hiera_puppet_spec.rb +20 -20
- data/spec/unit/indirector/catalog/compiler_spec.rb +166 -183
- data/spec/unit/indirector/catalog/json_spec.rb +2 -1
- data/spec/unit/indirector/catalog/msgpack_spec.rb +1 -0
- data/spec/unit/indirector/catalog/rest_spec.rb +1 -0
- data/spec/unit/indirector/catalog/store_configs_spec.rb +1 -0
- data/spec/unit/indirector/catalog/yaml_spec.rb +1 -0
- data/spec/unit/indirector/certificate/file_spec.rb +1 -8
- data/spec/unit/indirector/certificate/rest_spec.rb +10 -8
- data/spec/unit/indirector/certificate_request/file_spec.rb +1 -0
- data/spec/unit/indirector/certificate_request/rest_spec.rb +1 -0
- data/spec/unit/indirector/direct_file_server_spec.rb +49 -57
- data/spec/unit/indirector/envelope_spec.rb +2 -1
- data/spec/unit/indirector/exec_spec.rb +31 -26
- data/spec/unit/indirector/face_spec.rb +9 -9
- data/spec/unit/indirector/facts/facter_spec.rb +43 -37
- data/spec/unit/indirector/facts/network_device_spec.rb +9 -8
- data/spec/unit/indirector/facts/rest_spec.rb +8 -7
- data/spec/unit/indirector/facts/store_configs_spec.rb +1 -0
- data/spec/unit/indirector/facts/yaml_spec.rb +90 -77
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +13 -9
- data/spec/unit/indirector/file_bucket_file/rest_spec.rb +1 -0
- data/spec/unit/indirector/file_bucket_file/selector_spec.rb +5 -4
- data/spec/unit/indirector/file_content/file_server_spec.rb +1 -0
- data/spec/unit/indirector/file_content/file_spec.rb +1 -0
- data/spec/unit/indirector/file_content/rest_spec.rb +1 -0
- data/spec/unit/indirector/file_content/selector_spec.rb +1 -0
- data/spec/unit/indirector/file_metadata/file_server_spec.rb +1 -0
- data/spec/unit/indirector/file_metadata/file_spec.rb +13 -12
- data/spec/unit/indirector/file_metadata/rest_spec.rb +1 -0
- data/spec/unit/indirector/file_metadata/selector_spec.rb +1 -0
- data/spec/unit/indirector/file_server_spec.rb +145 -145
- data/spec/unit/indirector/indirection_spec.rb +226 -249
- data/spec/unit/indirector/json_spec.rb +9 -7
- data/spec/unit/indirector/key/file_spec.rb +22 -38
- data/spec/unit/indirector/memory_spec.rb +7 -6
- data/spec/unit/indirector/msgpack_spec.rb +9 -7
- data/spec/unit/indirector/node/exec_spec.rb +43 -22
- data/spec/unit/indirector/node/memory_spec.rb +4 -2
- data/spec/unit/indirector/node/msgpack_spec.rb +1 -0
- data/spec/unit/indirector/node/plain_spec.rb +4 -2
- data/spec/unit/indirector/node/rest_spec.rb +1 -0
- data/spec/unit/indirector/node/store_configs_spec.rb +1 -0
- data/spec/unit/indirector/node/yaml_spec.rb +1 -0
- data/spec/unit/indirector/none_spec.rb +5 -5
- data/spec/unit/indirector/plain_spec.rb +8 -7
- data/spec/unit/indirector/report/msgpack_spec.rb +1 -0
- data/spec/unit/indirector/report/processor_spec.rb +22 -21
- data/spec/unit/indirector/report/rest_spec.rb +12 -11
- data/spec/unit/indirector/report/yaml_spec.rb +1 -0
- data/spec/unit/indirector/request_spec.rb +18 -15
- data/spec/unit/indirector/resource/ral_spec.rb +55 -47
- data/spec/unit/indirector/resource/store_configs_spec.rb +1 -0
- data/spec/unit/indirector/rest_spec.rb +110 -113
- data/spec/unit/indirector/ssl_file_spec.rb +100 -119
- data/spec/unit/indirector/status/local_spec.rb +1 -0
- data/spec/unit/indirector/status/rest_spec.rb +1 -0
- data/spec/unit/indirector/store_configs_spec.rb +1 -0
- data/spec/unit/indirector/terminus_spec.rb +30 -32
- data/spec/unit/indirector/yaml_spec.rb +90 -68
- data/spec/unit/indirector_spec.rb +2 -1
- data/spec/unit/info_service_spec.rb +144 -10
- data/spec/unit/interface/action_builder_spec.rb +1 -0
- data/spec/unit/interface/action_manager_spec.rb +1 -0
- data/spec/unit/interface/action_spec.rb +3 -2
- data/spec/unit/interface/documentation_spec.rb +1 -0
- data/spec/unit/interface/face_collection_spec.rb +12 -19
- data/spec/unit/interface_spec.rb +3 -3
- data/spec/unit/man_spec.rb +4 -3
- data/spec/unit/module_spec.rb +52 -102
- data/spec/unit/module_tool/applications/installer_spec.rb +13 -12
- data/spec/unit/module_tool/applications/searcher_spec.rb +3 -3
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +2 -1
- data/spec/unit/module_tool/applications/unpacker_spec.rb +13 -13
- data/spec/unit/module_tool/applications/upgrader_spec.rb +6 -6
- data/spec/unit/module_tool/install_directory_spec.rb +8 -8
- data/spec/unit/module_tool/installed_modules_spec.rb +3 -3
- data/spec/unit/module_tool/tar/gnu_spec.rb +6 -6
- data/spec/unit/module_tool/tar/mini_spec.rb +12 -12
- data/spec/unit/module_tool/tar_spec.rb +13 -12
- data/spec/unit/module_tool_spec.rb +12 -29
- data/spec/unit/network/auth_config_parser_spec.rb +13 -11
- data/spec/unit/network/authconfig_spec.rb +18 -17
- data/spec/unit/network/authorization_spec.rb +5 -4
- data/spec/unit/network/authstore_spec.rb +1 -0
- data/spec/unit/network/format_handler_spec.rb +1 -0
- data/spec/unit/network/format_spec.rb +10 -9
- data/spec/unit/network/format_support_spec.rb +29 -28
- data/spec/unit/network/formats_spec.rb +31 -4
- data/spec/unit/network/http/api/indirected_routes_spec.rb +41 -51
- data/spec/unit/network/http/api/master/v3/authorization_spec.rb +7 -9
- data/spec/unit/network/http/api/master/v3/environment_spec.rb +1 -2
- data/spec/unit/network/http/api/master/v3/environments_spec.rb +7 -6
- data/spec/unit/network/http/api_spec.rb +2 -26
- data/spec/unit/network/http/compression_spec.rb +28 -24
- data/spec/unit/network/http/connection_spec.rb +122 -72
- data/spec/unit/network/http/factory_spec.rb +11 -40
- data/spec/unit/network/http/handler_spec.rb +18 -9
- data/spec/unit/network/http/nocache_pool_spec.rb +7 -6
- data/spec/unit/network/http/pool_spec.rb +29 -60
- data/spec/unit/network/http/request_spec.rb +2 -0
- data/spec/unit/network/http/response_spec.rb +13 -11
- data/spec/unit/network/http/route_spec.rb +1 -0
- data/spec/unit/network/http/session_spec.rb +2 -1
- data/spec/unit/network/http/site_spec.rb +1 -0
- data/spec/unit/network/http_pool_spec.rb +9 -18
- data/spec/unit/network/http_spec.rb +1 -0
- data/spec/unit/network/resolver_spec.rb +104 -28
- data/spec/unit/network/rights_spec.rb +53 -52
- data/spec/unit/node/environment_spec.rb +17 -18
- data/spec/unit/node/facts_spec.rb +21 -6
- data/spec/unit/node_spec.rb +23 -17
- data/spec/unit/other/selinux_spec.rb +1 -71
- data/spec/unit/parameter/boolean_spec.rb +2 -1
- data/spec/unit/parameter/package_options_spec.rb +2 -1
- data/spec/unit/parameter/path_spec.rb +1 -0
- data/spec/unit/parameter/value_collection_spec.rb +1 -0
- data/spec/unit/parameter/value_spec.rb +1 -0
- data/spec/unit/parameter_spec.rb +9 -9
- data/spec/unit/parser/ast/block_expression_spec.rb +8 -6
- data/spec/unit/parser/ast/leaf_spec.rb +21 -20
- data/spec/unit/parser/compiler_spec.rb +96 -84
- data/spec/unit/parser/environment_compiler_spec.rb +16 -23
- data/spec/unit/parser/files_spec.rb +1 -0
- data/spec/unit/parser/functions/create_resources_spec.rb +1 -1
- data/spec/unit/parser/functions/digest_spec.rb +1 -4
- data/spec/unit/parser/functions/fail_spec.rb +2 -5
- data/spec/unit/parser/functions/file_spec.rb +14 -17
- data/spec/unit/parser/functions/fqdn_rand_spec.rb +6 -5
- data/spec/unit/parser/functions/generate_spec.rb +37 -38
- data/spec/unit/parser/functions/inline_template_spec.rb +1 -4
- data/spec/unit/parser/functions/regsubst_spec.rb +1 -4
- data/spec/unit/parser/functions/scanf_spec.rb +1 -4
- data/spec/unit/parser/functions/shellquote_spec.rb +1 -0
- data/spec/unit/parser/functions/split_spec.rb +1 -4
- data/spec/unit/parser/functions/sprintf_spec.rb +1 -4
- data/spec/unit/parser/functions/tag_spec.rb +2 -5
- data/spec/unit/parser/functions/tagged_spec.rb +3 -6
- data/spec/unit/parser/functions/template_spec.rb +13 -17
- data/spec/unit/parser/functions/versioncmp_spec.rb +2 -5
- data/spec/unit/parser/functions_spec.rb +29 -3
- data/spec/unit/parser/relationship_spec.rb +1 -0
- data/spec/unit/parser/resource/param_spec.rb +1 -1
- data/spec/unit/parser/resource_spec.rb +42 -42
- data/spec/unit/parser/scope_spec.rb +35 -39
- data/spec/unit/parser/templatewrapper_spec.rb +12 -11
- data/spec/unit/parser/type_loader_spec.rb +19 -17
- data/spec/unit/pops/adaptable_spec.rb +1 -0
- data/spec/unit/pops/benchmark_spec.rb +1 -0
- data/spec/unit/pops/evaluator/access_ops_spec.rb +1 -0
- data/spec/unit/pops/evaluator/arithmetic_ops_spec.rb +11 -0
- data/spec/unit/pops/evaluator/basic_expressions_spec.rb +1 -0
- data/spec/unit/pops/evaluator/collections_ops_spec.rb +1 -0
- data/spec/unit/pops/evaluator/comparison_ops_spec.rb +1 -0
- data/spec/unit/pops/evaluator/conditionals_spec.rb +1 -0
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +78 -18
- data/spec/unit/pops/evaluator/logical_ops_spec.rb +1 -0
- data/spec/unit/pops/evaluator/runtime3_converter_spec.rb +5 -4
- data/spec/unit/pops/evaluator/string_interpolation_spec.rb +1 -0
- data/spec/unit/pops/evaluator/variables_spec.rb +1 -0
- data/spec/unit/pops/factory_spec.rb +4 -3
- data/spec/unit/pops/issues_spec.rb +20 -19
- data/spec/unit/pops/loaders/dependency_loader_spec.rb +2 -2
- data/spec/unit/pops/loaders/loader_spec.rb +12 -36
- data/spec/unit/pops/loaders/loaders_spec.rb +57 -54
- data/spec/unit/pops/loaders/module_loaders_spec.rb +35 -3
- data/spec/unit/pops/loaders/static_loader_spec.rb +0 -36
- data/spec/unit/pops/lookup/context_spec.rb +1 -0
- data/spec/unit/pops/lookup/interpolation_spec.rb +3 -2
- data/spec/unit/pops/merge_strategy_spec.rb +1 -0
- data/spec/unit/pops/migration_spec.rb +5 -3
- data/spec/unit/pops/model/model_spec.rb +1 -0
- data/spec/unit/pops/model/pn_transformer_spec.rb +1 -0
- data/spec/unit/pops/parser/lexer2_spec.rb +60 -21
- data/spec/unit/pops/parser/locator_spec.rb +6 -48
- data/spec/unit/pops/parser/parse_application_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_calls_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_capabilities_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_containers_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_heredoc_spec.rb +12 -124
- data/spec/unit/pops/parser/parse_plan_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_resource_spec.rb +1 -0
- data/spec/unit/pops/parser/parse_site_spec.rb +1 -0
- data/spec/unit/pops/parser/pn_parser_spec.rb +1 -0
- data/spec/unit/pops/pn_spec.rb +1 -0
- data/spec/unit/pops/resource/resource_type_impl_spec.rb +1 -0
- data/spec/unit/pops/serialization/serialization_spec.rb +7 -5
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +29 -4
- data/spec/unit/pops/serialization/to_stringified_spec.rb +157 -0
- data/spec/unit/pops/types/deferred_spec.rb +87 -0
- data/spec/unit/pops/types/p_object_type_spec.rb +20 -0
- data/spec/unit/pops/types/p_timespan_type_spec.rb +0 -22
- data/spec/unit/pops/types/p_timestamp_type_spec.rb +0 -19
- data/spec/unit/pops/types/recursion_guard_spec.rb +10 -10
- data/spec/unit/pops/types/ruby_generator_spec.rb +2 -2
- data/spec/unit/pops/types/string_converter_spec.rb +11 -22
- data/spec/unit/pops/types/task_spec.rb +148 -16
- data/spec/unit/pops/types/type_asserter_spec.rb +2 -2
- data/spec/unit/pops/types/type_calculator_spec.rb +36 -36
- data/spec/unit/pops/types/type_mismatch_describer_spec.rb +0 -9
- data/spec/unit/pops/types/type_parser_spec.rb +13 -13
- data/spec/unit/pops/types/types_spec.rb +12 -6
- data/spec/unit/pops/validator/validator_spec.rb +162 -82
- data/spec/unit/pops/visitor_spec.rb +1 -0
- data/spec/unit/property/boolean_spec.rb +1 -1
- data/spec/unit/property/ensure_spec.rb +1 -0
- data/spec/unit/property/keyvalue_spec.rb +34 -32
- data/spec/unit/property/list_spec.rb +27 -26
- data/spec/unit/property/ordered_list_spec.rb +14 -10
- data/spec/unit/property_spec.rb +53 -43
- data/spec/unit/provider/aix_object_spec.rb +45 -47
- data/spec/unit/provider/command_spec.rb +9 -9
- data/spec/unit/provider/exec/posix_spec.rb +9 -8
- data/spec/unit/provider/exec/shell_spec.rb +3 -1
- data/spec/unit/provider/exec/windows_spec.rb +6 -4
- data/spec/unit/provider/exec_spec.rb +1 -209
- data/spec/unit/provider/file/posix_spec.rb +24 -22
- data/spec/unit/provider/file/windows_spec.rb +19 -17
- data/spec/unit/provider/group/aix_spec.rb +7 -22
- data/spec/unit/provider/group/groupadd_spec.rb +27 -60
- data/spec/unit/provider/group/ldap_spec.rb +36 -33
- data/spec/unit/provider/group/pw_spec.rb +18 -15
- data/spec/unit/provider/group/windows_adsi_spec.rb +80 -128
- data/spec/unit/provider/ldap_spec.rb +62 -61
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +109 -102
- data/spec/unit/provider/nameservice_spec.rb +41 -39
- data/spec/unit/provider/package/aix_spec.rb +22 -48
- data/spec/unit/provider/package/appdmg_spec.rb +13 -13
- data/spec/unit/provider/package/apt_spec.rb +35 -60
- data/spec/unit/provider/package/aptitude_spec.rb +7 -7
- data/spec/unit/provider/package/aptrpm_spec.rb +13 -8
- data/spec/unit/provider/package/base_spec.rb +4 -4
- data/spec/unit/provider/package/dnf_spec.rb +23 -34
- data/spec/unit/provider/package/dpkg_spec.rb +72 -114
- data/spec/unit/provider/package/freebsd_spec.rb +18 -15
- data/spec/unit/provider/package/gem_spec.rb +86 -163
- data/spec/unit/provider/package/hpux_spec.rb +18 -15
- data/spec/unit/provider/package/macports_spec.rb +54 -56
- data/spec/unit/provider/package/nim_spec.rb +49 -33
- data/spec/unit/provider/package/openbsd_spec.rb +49 -60
- data/spec/unit/provider/package/opkg_spec.rb +26 -23
- data/spec/unit/provider/package/pacman_spec.rb +118 -97
- data/spec/unit/provider/package/pip3_spec.rb +6 -20
- data/spec/unit/provider/package/pip_spec.rb +129 -185
- data/spec/unit/provider/package/pkg_spec.rb +119 -129
- data/spec/unit/provider/package/pkgdmg_spec.rb +63 -65
- data/spec/unit/provider/package/pkgin_spec.rb +23 -20
- data/spec/unit/provider/package/pkgng_spec.rb +35 -67
- data/spec/unit/provider/package/pkgutil_spec.rb +49 -45
- data/spec/unit/provider/package/portage_spec.rb +76 -72
- data/spec/unit/provider/package/puppet_gem_spec.rb +21 -45
- data/spec/unit/provider/package/rpm_spec.rb +79 -291
- data/spec/unit/provider/package/sun_spec.rb +18 -16
- data/spec/unit/provider/package/tdnf_spec.rb +12 -9
- data/spec/unit/provider/package/up2date_spec.rb +4 -2
- data/spec/unit/provider/package/urpmi_spec.rb +17 -15
- data/spec/unit/provider/package/windows/exe_package_spec.rb +18 -15
- data/spec/unit/provider/package/windows/msi_package_spec.rb +23 -20
- data/spec/unit/provider/package/windows/package_spec.rb +43 -38
- data/spec/unit/provider/package/windows_spec.rb +36 -51
- data/spec/unit/provider/package/yum_spec.rb +24 -128
- data/spec/unit/provider/package/zypper_spec.rb +106 -117
- data/spec/unit/provider/parsedfile_spec.rb +45 -44
- data/spec/unit/provider/service/base_spec.rb +6 -5
- data/spec/unit/provider/service/bsd_spec.rb +54 -47
- data/spec/unit/provider/service/daemontools_spec.rb +53 -70
- data/spec/unit/provider/service/debian_spec.rb +58 -46
- data/spec/unit/provider/service/freebsd_spec.rb +23 -20
- data/spec/unit/provider/service/gentoo_spec.rb +81 -74
- data/spec/unit/provider/service/init_spec.rb +66 -65
- data/spec/unit/provider/service/launchd_spec.rb +114 -181
- data/spec/unit/provider/service/openbsd_spec.rb +94 -87
- data/spec/unit/provider/service/openrc_spec.rb +74 -70
- data/spec/unit/provider/service/openwrt_spec.rb +38 -30
- data/spec/unit/provider/service/rcng_spec.rb +24 -19
- data/spec/unit/provider/service/redhat_spec.rb +60 -60
- data/spec/unit/provider/service/runit_spec.rb +44 -61
- data/spec/unit/provider/service/smf_spec.rb +74 -143
- data/spec/unit/provider/service/src_spec.rb +69 -60
- data/spec/unit/provider/service/systemd_spec.rb +160 -222
- data/spec/unit/provider/service/upstart_spec.rb +99 -83
- data/spec/unit/provider/service/windows_spec.rb +42 -84
- data/spec/unit/provider/user/aix_spec.rb +24 -65
- data/spec/unit/provider/user/directoryservice_spec.rb +114 -187
- data/spec/unit/provider/user/hpux_spec.rb +21 -17
- data/spec/unit/provider/user/ldap_spec.rb +83 -80
- data/spec/unit/provider/user/openbsd_spec.rb +12 -11
- data/spec/unit/provider/user/pw_spec.rb +44 -80
- data/spec/unit/provider/user/user_role_add_spec.rb +94 -94
- data/spec/unit/provider/user/useradd_spec.rb +100 -208
- data/spec/unit/provider/user/windows_adsi_spec.rb +63 -62
- data/spec/unit/provider_spec.rb +189 -41
- data/spec/unit/puppet_pal_2pec.rb +26 -12
- data/spec/unit/puppet_pal_catalog_spec.rb +801 -0
- data/spec/unit/puppet_pal_spec.rb +2 -8
- data/spec/unit/puppet_spec.rb +7 -27
- data/spec/unit/relationship_spec.rb +1 -0
- data/spec/unit/reports/http_spec.rb +23 -21
- data/spec/unit/reports/store_spec.rb +4 -3
- data/spec/unit/reports_spec.rb +14 -12
- data/spec/unit/resource/capability_finder_spec.rb +26 -29
- data/spec/unit/resource/catalog_spec.rb +77 -81
- data/spec/unit/resource/status_spec.rb +8 -6
- data/spec/unit/resource/type_collection_spec.rb +18 -17
- data/spec/unit/resource/type_spec.rb +35 -34
- data/spec/unit/resource_spec.rb +79 -67
- data/spec/unit/rest/client_spec.rb +135 -0
- data/spec/unit/rest/route_spec.rb +132 -0
- data/spec/unit/scheduler/job_spec.rb +1 -0
- data/spec/unit/scheduler/scheduler_spec.rb +1 -0
- data/spec/unit/scheduler/splay_job_spec.rb +2 -1
- data/spec/unit/settings/array_setting_spec.rb +1 -1
- data/spec/unit/settings/autosign_setting_spec.rb +9 -9
- data/spec/unit/settings/certificate_revocation_setting_spec.rb +1 -1
- data/spec/unit/settings/config_file_spec.rb +10 -0
- data/spec/unit/settings/directory_setting_spec.rb +7 -2
- data/spec/unit/settings/duration_setting_spec.rb +2 -1
- data/spec/unit/settings/enum_setting_spec.rb +1 -1
- data/spec/unit/settings/environment_conf_spec.rb +6 -4
- data/spec/unit/settings/file_setting_spec.rb +50 -46
- data/spec/unit/settings/ini_file_spec.rb +2 -4
- data/spec/unit/settings/path_setting_spec.rb +3 -2
- data/spec/unit/settings/priority_setting_spec.rb +2 -1
- data/spec/unit/settings/string_setting_spec.rb +15 -14
- data/spec/unit/settings/terminus_setting_spec.rb +2 -1
- data/spec/unit/settings/value_translator_spec.rb +1 -0
- data/spec/unit/settings_spec.rb +226 -253
- data/spec/unit/ssl/base_spec.rb +15 -14
- data/spec/unit/ssl/certificate_request_attributes_spec.rb +22 -8
- data/spec/unit/ssl/certificate_request_spec.rb +63 -92
- data/spec/unit/ssl/certificate_spec.rb +29 -37
- data/spec/unit/ssl/digest_spec.rb +1 -0
- data/spec/unit/ssl/host_spec.rb +305 -685
- data/spec/unit/ssl/key_spec.rb +34 -46
- data/spec/unit/ssl/validator_spec.rb +70 -203
- data/spec/unit/task_spec.rb +172 -26
- data/spec/unit/transaction/additional_resource_generator_spec.rb +68 -67
- data/spec/unit/transaction/event_manager_spec.rb +84 -95
- data/spec/unit/transaction/event_spec.rb +15 -16
- data/spec/unit/transaction/persistence_spec.rb +18 -17
- data/spec/unit/transaction/report_spec.rb +24 -18
- data/spec/unit/transaction/resource_harness_spec.rb +33 -72
- data/spec/unit/transaction_spec.rb +106 -176
- data/spec/unit/type/component_spec.rb +1 -0
- data/spec/unit/type/exec_spec.rb +66 -120
- data/spec/unit/type/file/checksum_spec.rb +11 -10
- data/spec/unit/type/file/checksum_value_spec.rb +32 -31
- data/spec/unit/type/file/content_spec.rb +62 -65
- data/spec/unit/type/file/ctime_spec.rb +1 -0
- data/spec/unit/type/file/ensure_spec.rb +13 -12
- data/spec/unit/type/file/group_spec.rb +7 -5
- data/spec/unit/type/file/mode_spec.rb +6 -4
- data/spec/unit/type/file/mtime_spec.rb +1 -0
- data/spec/unit/type/file/owner_spec.rb +8 -6
- data/spec/unit/type/file/selinux_spec.rb +19 -17
- data/spec/unit/type/file/source_spec.rb +110 -113
- data/spec/unit/type/file/type_spec.rb +1 -0
- data/spec/unit/type/file_spec.rb +190 -204
- data/spec/unit/type/filebucket_spec.rb +10 -11
- data/spec/unit/type/group_spec.rb +9 -15
- data/spec/unit/type/noop_metaparam_spec.rb +2 -1
- data/spec/unit/type/package/package_settings_spec.rb +23 -44
- data/spec/unit/type/package_spec.rb +64 -61
- data/spec/unit/type/resources_spec.rb +101 -103
- data/spec/unit/type/schedule_spec.rb +28 -28
- data/spec/unit/type/service_spec.rb +85 -76
- data/spec/unit/type/stage_spec.rb +1 -0
- data/spec/unit/type/tidy_spec.rb +63 -62
- data/spec/unit/type/user_spec.rb +26 -147
- data/spec/unit/type/whit_spec.rb +1 -0
- data/spec/unit/type_spec.rb +164 -125
- data/spec/unit/util/at_fork_spec.rb +19 -18
- data/spec/unit/util/autoload_spec.rb +122 -93
- data/spec/unit/util/backups_spec.rb +35 -34
- data/spec/unit/util/character_encoding_spec.rb +5 -48
- data/spec/unit/util/checksums_spec.rb +39 -38
- data/spec/unit/util/colors_spec.rb +2 -1
- data/spec/unit/util/command_line_spec.rb +20 -40
- data/spec/unit/util/constant_inflector_spec.rb +1 -0
- data/spec/unit/util/diff_spec.rb +8 -7
- data/spec/unit/util/errors_spec.rb +1 -0
- data/spec/unit/util/execution_spec.rb +167 -285
- data/spec/unit/util/execution_stub_spec.rb +3 -2
- data/spec/unit/util/feature_spec.rb +46 -28
- data/spec/unit/util/filetype_spec.rb +53 -61
- data/spec/unit/util/http_proxy_spec.rb +13 -133
- data/spec/unit/util/inifile_spec.rb +31 -26
- data/spec/unit/util/json_lockfile_spec.rb +5 -3
- data/spec/unit/util/ldap/connection_spec.rb +25 -26
- data/spec/unit/util/ldap/generator_spec.rb +1 -0
- data/spec/unit/util/ldap/manager_spec.rb +102 -118
- data/spec/unit/util/lockfile_spec.rb +2 -1
- data/spec/unit/util/log/destinations_spec.rb +40 -23
- data/spec/unit/util/log_spec.rb +146 -48
- data/spec/unit/util/logging_spec.rb +114 -252
- data/spec/unit/util/metric_spec.rb +1 -0
- data/spec/unit/util/monkey_patches_spec.rb +12 -24
- data/spec/unit/util/multi_match_spec.rb +1 -0
- data/spec/unit/util/network_device/config_spec.rb +1 -0
- data/spec/unit/util/network_device/transport/base_spec.rb +6 -5
- data/spec/unit/util/network_device_spec.rb +9 -7
- data/spec/unit/util/package_spec.rb +1 -0
- data/spec/unit/util/pidlock_spec.rb +14 -86
- data/spec/unit/util/plist_spec.rb +33 -60
- data/spec/unit/util/posix_spec.rb +47 -78
- data/spec/unit/util/profiler/object_counts_spec.rb +2 -1
- data/spec/unit/util/rdoc_spec.rb +10 -9
- data/spec/unit/util/reference_spec.rb +1 -0
- data/spec/unit/util/resource_template_spec.rb +20 -20
- data/spec/unit/util/retry_action_spec.rb +8 -7
- data/spec/unit/util/rubygems_spec.rb +7 -41
- data/spec/unit/util/run_mode_spec.rb +11 -10
- data/spec/unit/util/selinux_spec.rb +73 -84
- data/spec/unit/util/splayer_spec.rb +9 -8
- data/spec/unit/util/ssl_spec.rb +1 -0
- data/spec/unit/util/storage_spec.rb +17 -111
- data/spec/unit/util/suidmanager_spec.rb +58 -47
- data/spec/unit/util/symbolic_file_mode_spec.rb +1 -0
- data/spec/unit/util/tag_set_spec.rb +9 -1
- data/spec/unit/util/tagging_spec.rb +12 -0
- data/spec/unit/util/terminal_spec.rb +10 -9
- data/spec/unit/util/user_attr_spec.rb +2 -1
- data/spec/unit/util/warnings_spec.rb +4 -3
- data/spec/unit/util/watcher/periodic_watcher_spec.rb +2 -2
- data/spec/unit/util/watcher_spec.rb +21 -51
- data/spec/unit/util/windows/access_control_entry_spec.rb +2 -1
- data/spec/unit/util/windows/access_control_list_spec.rb +2 -1
- data/spec/unit/util/windows/adsi_spec.rb +134 -278
- data/spec/unit/util/windows/api_types_spec.rb +42 -105
- data/spec/unit/util/windows/eventlog_spec.rb +13 -10
- data/spec/unit/util/windows/file_spec.rb +1 -0
- data/spec/unit/util/windows/root_certs_spec.rb +1 -0
- data/spec/unit/util/windows/security_descriptor_spec.rb +3 -1
- data/spec/unit/util/windows/service_spec.rb +180 -432
- data/spec/unit/util/windows/sid_spec.rb +17 -15
- data/spec/unit/util/windows/string_spec.rb +2 -1
- data/spec/unit/util/yaml_spec.rb +162 -28
- data/spec/unit/util_spec.rb +74 -119
- data/spec/unit/version_spec.rb +6 -6
- data/tasks/benchmark.rake +5 -1
- data/tasks/ci.rake +0 -5
- data/tasks/manpages.rake +9 -2
- data/tasks/parser.rake +11 -3
- metadata +162 -479
- data/CODEOWNERS +0 -30
- data/ext/rack/config.ru +0 -44
- data/ext/rack/example-passenger-vhost.conf +0 -57
- data/lib/puppet/application/ca.rb +0 -11
- data/lib/puppet/application/certificate.rb +0 -17
- data/lib/puppet/application/certificate_request.rb +0 -7
- data/lib/puppet/application/certificate_revocation_list.rb +0 -7
- data/lib/puppet/application/master.rb +0 -319
- data/lib/puppet/confine/boolean.rb +0 -45
- data/lib/puppet/external/nagios.rb +0 -46
- data/lib/puppet/external/nagios/base.rb +0 -472
- data/lib/puppet/external/nagios/grammar.ry +0 -248
- data/lib/puppet/external/nagios/makefile +0 -9
- data/lib/puppet/external/nagios/parser.rb +0 -400
- data/lib/puppet/face/ca.rb +0 -266
- data/lib/puppet/face/certificate.rb +0 -167
- data/lib/puppet/face/certificate_request.rb +0 -56
- data/lib/puppet/face/certificate_revocation_list.rb +0 -56
- data/lib/puppet/feature/rack.rb +0 -19
- data/lib/puppet/graph/random_prioritizer.rb +0 -16
- data/lib/puppet/graph/title_hash_prioritizer.rb +0 -16
- data/lib/puppet/indirector/certificate/ca.rb +0 -9
- data/lib/puppet/indirector/certificate/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/certificate_request/ca.rb +0 -22
- data/lib/puppet/indirector/certificate_request/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/certificate_revocation_list/ca.rb +0 -8
- data/lib/puppet/indirector/certificate_revocation_list/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/certificate_revocation_list/file.rb +0 -8
- data/lib/puppet/indirector/certificate_revocation_list/rest.rb +0 -22
- data/lib/puppet/indirector/certificate_status.rb +0 -4
- data/lib/puppet/indirector/certificate_status/file.rb +0 -91
- data/lib/puppet/indirector/certificate_status/rest.rb +0 -11
- data/lib/puppet/indirector/key/ca.rb +0 -16
- data/lib/puppet/indirector/key/disabled_ca.rb +0 -22
- data/lib/puppet/indirector/ldap.rb +0 -86
- data/lib/puppet/indirector/node/ldap.rb +0 -275
- data/lib/puppet/indirector/node/write_only_yaml.rb +0 -39
- data/lib/puppet/module_tool/applications/builder.rb +0 -152
- data/lib/puppet/module_tool/skeleton/templates/generator/Gemfile +0 -18
- data/lib/puppet/module_tool/skeleton/templates/generator/README.md.erb +0 -89
- data/lib/puppet/module_tool/skeleton/templates/generator/Rakefile +0 -32
- data/lib/puppet/module_tool/skeleton/templates/generator/examples/init.pp.erb +0 -12
- data/lib/puppet/module_tool/skeleton/templates/generator/manifests/init.pp.erb +0 -48
- data/lib/puppet/module_tool/skeleton/templates/generator/metadata.json.erb +0 -1
- data/lib/puppet/module_tool/skeleton/templates/generator/spec/classes/init_spec.rb.erb +0 -6
- data/lib/puppet/module_tool/skeleton/templates/generator/spec/spec_helper.rb +0 -1
- data/lib/puppet/network/http/api/ca.rb +0 -2
- data/lib/puppet/network/http/api/ca/v1.rb +0 -11
- data/lib/puppet/network/http/rack.rb +0 -33
- data/lib/puppet/network/http/rack/rest.rb +0 -162
- data/lib/puppet/network/http/webrick.rb +0 -124
- data/lib/puppet/network/http/webrick/rest.rb +0 -114
- data/lib/puppet/network/server.rb +0 -39
- data/lib/puppet/provider/augeas/augeas.rb +0 -767
- data/lib/puppet/provider/cisco.rb +0 -9
- data/lib/puppet/provider/computer/computer.rb +0 -20
- data/lib/puppet/provider/cron/crontab.rb +0 -297
- data/lib/puppet/provider/host/parsed.rb +0 -46
- data/lib/puppet/provider/interface/cisco.rb +0 -27
- data/lib/puppet/provider/macauthorization/macauthorization.rb +0 -298
- data/lib/puppet/provider/mailalias/aliases.rb +0 -50
- data/lib/puppet/provider/maillist/mailman.rb +0 -108
- data/lib/puppet/provider/mcx/mcxcontent.rb +0 -173
- data/lib/puppet/provider/mount.rb +0 -76
- data/lib/puppet/provider/mount/parsed.rb +0 -285
- data/lib/puppet/provider/naginator.rb +0 -63
- data/lib/puppet/provider/package/dnfmodule.rb +0 -141
- data/lib/puppet/provider/package_targetable.rb +0 -69
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +0 -590
- data/lib/puppet/provider/selboolean/getsetsebool.rb +0 -47
- data/lib/puppet/provider/selmodule/semodule.rb +0 -157
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +0 -105
- data/lib/puppet/provider/sshkey/parsed.rb +0 -50
- data/lib/puppet/provider/vlan/cisco.rb +0 -28
- data/lib/puppet/provider/yumrepo/inifile.rb +0 -315
- data/lib/puppet/provider/zfs/zfs.rb +0 -108
- data/lib/puppet/provider/zone/solaris.rb +0 -364
- data/lib/puppet/provider/zpool/zpool.rb +0 -125
- data/lib/puppet/ssl/certificate_authority.rb +0 -554
- data/lib/puppet/ssl/certificate_authority/autosign_command.rb +0 -45
- data/lib/puppet/ssl/certificate_authority/interface.rb +0 -324
- data/lib/puppet/ssl/certificate_revocation_list.rb +0 -111
- data/lib/puppet/ssl/configuration.rb +0 -61
- data/lib/puppet/ssl/inventory.rb +0 -55
- data/lib/puppet/type/augeas.rb +0 -211
- data/lib/puppet/type/computer.rb +0 -66
- data/lib/puppet/type/cron.rb +0 -480
- data/lib/puppet/type/host.rb +0 -95
- data/lib/puppet/type/interface.rb +0 -121
- data/lib/puppet/type/k5login.rb +0 -165
- data/lib/puppet/type/macauthorization.rb +0 -167
- data/lib/puppet/type/mailalias.rb +0 -46
- data/lib/puppet/type/maillist.rb +0 -62
- data/lib/puppet/type/mcx.rb +0 -98
- data/lib/puppet/type/mount.rb +0 -314
- data/lib/puppet/type/nagios_command.rb +0 -3
- data/lib/puppet/type/nagios_contact.rb +0 -3
- data/lib/puppet/type/nagios_contactgroup.rb +0 -3
- data/lib/puppet/type/nagios_host.rb +0 -3
- data/lib/puppet/type/nagios_hostdependency.rb +0 -3
- data/lib/puppet/type/nagios_hostescalation.rb +0 -3
- data/lib/puppet/type/nagios_hostextinfo.rb +0 -3
- data/lib/puppet/type/nagios_hostgroup.rb +0 -3
- data/lib/puppet/type/nagios_service.rb +0 -3
- data/lib/puppet/type/nagios_servicedependency.rb +0 -3
- data/lib/puppet/type/nagios_serviceescalation.rb +0 -3
- data/lib/puppet/type/nagios_serviceextinfo.rb +0 -3
- data/lib/puppet/type/nagios_servicegroup.rb +0 -3
- data/lib/puppet/type/nagios_timeperiod.rb +0 -3
- data/lib/puppet/type/router.rb +0 -17
- data/lib/puppet/type/scheduled_task.rb +0 -183
- data/lib/puppet/type/selboolean.rb +0 -40
- data/lib/puppet/type/selmodule.rb +0 -58
- data/lib/puppet/type/ssh_authorized_key.rb +0 -143
- data/lib/puppet/type/sshkey.rb +0 -83
- data/lib/puppet/type/vlan.rb +0 -26
- data/lib/puppet/type/yumrepo.rb +0 -430
- data/lib/puppet/type/zfs.rb +0 -154
- data/lib/puppet/type/zone.rb +0 -382
- data/lib/puppet/type/zpool.rb +0 -91
- data/lib/puppet/util/methodhelper.rb +0 -32
- data/lib/puppet/util/nagios_maker.rb +0 -85
- data/lib/puppet/util/network_device/cisco.rb +0 -4
- data/lib/puppet/util/network_device/cisco/device.rb +0 -285
- data/lib/puppet/util/network_device/cisco/facts.rb +0 -72
- data/lib/puppet/util/network_device/cisco/interface.rb +0 -94
- data/lib/puppet/util/network_device/ipcalc.rb +0 -68
- data/lib/puppet/util/network_device/transport/ssh.rb +0 -126
- data/lib/puppet/util/network_device/transport/telnet.rb +0 -47
- data/lib/puppet/util/windows/taskscheduler.rb +0 -1267
- data/lib/puppet/vendor/load_semantic.rb +0 -1
- data/lib/puppet/vendor/load_semantic_puppet.rb +0 -1
- data/lib/puppet/vendor/semantic/lib/semantic.rb +0 -5
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet.rb +0 -11
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency.rb +0 -181
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/graph.rb +0 -60
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/graph_node.rb +0 -117
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/module_release.rb +0 -58
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/source.rb +0 -25
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/dependency/unsatisfiable_graph.rb +0 -31
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/gem_version.rb +0 -3
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version.rb +0 -203
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version_range.rb +0 -758
- data/lib/puppet/vendor/semantic_puppet/locales/config.yaml +0 -21
- data/man/man8/puppet-ca.8 +0 -196
- data/man/man8/puppet-cert.8 +0 -118
- data/man/man8/puppet-certificate.8 +0 -240
- data/man/man8/puppet-certificate_request.8 +0 -161
- data/man/man8/puppet-certificate_revocation_list.8 +0 -139
- data/man/man8/puppet-master.8 +0 -85
- data/spec/fixtures/integration/provider/cron/crontab/create_normal_entry +0 -19
- data/spec/fixtures/integration/provider/cron/crontab/create_special_entry +0 -18
- data/spec/fixtures/integration/provider/cron/crontab/crontab_user1 +0 -15
- data/spec/fixtures/integration/provider/cron/crontab/crontab_user2 +0 -4
- data/spec/fixtures/integration/provider/cron/crontab/modify_entry +0 -13
- data/spec/fixtures/integration/provider/cron/crontab/moved_cronjob_input1 +0 -15
- data/spec/fixtures/integration/provider/cron/crontab/moved_cronjob_input2 +0 -6
- data/spec/fixtures/integration/provider/cron/crontab/purged +0 -8
- data/spec/fixtures/integration/provider/cron/crontab/remove_named_resource +0 -12
- data/spec/fixtures/integration/provider/cron/crontab/remove_unnamed_resource +0 -14
- data/spec/fixtures/integration/provider/cron/crontab/unspecialized +0 -15
- data/spec/fixtures/integration/provider/mailalias/aliases/test1 +0 -32
- data/spec/fixtures/integration/provider/sshkey/sample +0 -21
- data/spec/fixtures/unit/provider/augeas/augeas/augeas/lenses/test.aug +0 -13
- data/spec/fixtures/unit/provider/augeas/augeas/etc/fstab +0 -10
- data/spec/fixtures/unit/provider/augeas/augeas/etc/hosts +0 -6
- data/spec/fixtures/unit/provider/augeas/augeas/etc/test +0 -3
- data/spec/fixtures/unit/provider/augeas/augeas/test.aug +0 -13
- data/spec/fixtures/unit/provider/host/parsed/valid_hosts +0 -19
- data/spec/fixtures/unit/provider/mount/mount-output.aix.txt +0 -7
- data/spec/fixtures/unit/provider/mount/parsed/aix.filesystems +0 -152
- data/spec/fixtures/unit/provider/mount/parsed/aix.mount +0 -11
- data/spec/fixtures/unit/provider/mount/parsed/darwin.mount +0 -6
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.fstab +0 -9
- data/spec/fixtures/unit/provider/mount/parsed/freebsd.mount +0 -4
- data/spec/fixtures/unit/provider/mount/parsed/hpux.mount +0 -17
- data/spec/fixtures/unit/provider/mount/parsed/linux.fstab +0 -12
- data/spec/fixtures/unit/provider/mount/parsed/linux.mount +0 -6
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.fstab +0 -10
- data/spec/fixtures/unit/provider/mount/parsed/netbsd.mount +0 -9
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.fstab +0 -5
- data/spec/fixtures/unit/provider/mount/parsed/openbsd.mount +0 -5
- data/spec/fixtures/unit/provider/mount/parsed/solaris.fstab +0 -11
- data/spec/fixtures/unit/provider/mount/parsed/solaris.mount +0 -6
- data/spec/fixtures/unit/provider/naginator/define_empty_param +0 -6
- data/spec/fixtures/unit/provider/package/dnfmodule/dnf-module-list.txt +0 -19
- data/spec/fixtures/unit/provider/package/yum/yum-check-update-subscription-manager.txt +0 -9
- data/spec/fixtures/unit/provider/service/smf/svcs_fmri.out +0 -6
- data/spec/fixtures/unit/provider/service/smf/svcs_multiple_fmris.out +0 -13
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys +0 -7
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys1 +0 -3
- data/spec/fixtures/unit/provider/ssh_authorized_key/parsed/authorized_keys2 +0 -1
- data/spec/fixtures/unit/provider/sshkey/parsed/sample +0 -21
- data/spec/fixtures/unit/provider/sshkey/parsed/sample_with_blank_lines +0 -8
- data/spec/fixtures/unit/provider/zfs/zfs/zfs-list.out +0 -2
- data/spec/fixtures/unit/provider/zpool/zpool/zpool-list.out +0 -2
- data/spec/integration/faces/ca_spec.rb +0 -353
- data/spec/integration/indirector/node/ldap_spec.rb +0 -13
- data/spec/integration/network/http_pool_spec.rb +0 -120
- data/spec/integration/provider/cron/crontab_spec.rb +0 -240
- data/spec/integration/provider/file/windows_spec.rb +0 -162
- data/spec/integration/provider/mailalias/aliases_spec.rb +0 -9
- data/spec/integration/provider/mount_spec.rb +0 -163
- data/spec/integration/provider/ssh_authorized_key_spec.rb +0 -217
- data/spec/integration/provider/sshkey_spec.rb +0 -153
- data/spec/integration/provider/yumrepo_spec.rb +0 -126
- data/spec/integration/ssl/autosign_spec.rb +0 -145
- data/spec/integration/ssl/certificate_authority_spec.rb +0 -161
- data/spec/integration/ssl/certificate_revocation_list_spec.rb +0 -33
- data/spec/integration/transaction_spec.rb +0 -553
- data/spec/integration/type/nagios_spec.rb +0 -69
- data/spec/integration/type/notify_spec.rb +0 -46
- data/spec/integration/type/user_spec.rb +0 -63
- data/spec/lib/puppet_spec/https.rb +0 -166
- data/spec/unit/application/cert_spec.rb +0 -272
- data/spec/unit/application/certificate_spec.rb +0 -21
- data/spec/unit/application/master_spec.rb +0 -414
- data/spec/unit/face/ca_spec.rb +0 -9
- data/spec/unit/face/certificate_request_spec.rb +0 -9
- data/spec/unit/face/certificate_revocation_list_spec.rb +0 -9
- data/spec/unit/face/certificate_spec.rb +0 -228
- data/spec/unit/face/module/build_spec.rb +0 -69
- data/spec/unit/graph/title_hash_prioritizer_spec.rb +0 -50
- data/spec/unit/indirector/certificate/ca_spec.rb +0 -21
- data/spec/unit/indirector/certificate/disabled_ca_spec.rb +0 -32
- data/spec/unit/indirector/certificate_request/ca_spec.rb +0 -56
- data/spec/unit/indirector/certificate_request/disabled_ca_spec.rb +0 -32
- data/spec/unit/indirector/certificate_revocation_list/ca_spec.rb +0 -15
- data/spec/unit/indirector/certificate_revocation_list/disabled_ca_spec.rb +0 -32
- data/spec/unit/indirector/certificate_revocation_list/file_spec.rb +0 -16
- data/spec/unit/indirector/certificate_revocation_list/rest_spec.rb +0 -33
- data/spec/unit/indirector/certificate_status/file_spec.rb +0 -190
- data/spec/unit/indirector/certificate_status/rest_spec.rb +0 -17
- data/spec/unit/indirector/code_spec.rb +0 -30
- data/spec/unit/indirector/key/ca_spec.rb +0 -22
- data/spec/unit/indirector/key/disabled_ca_spec.rb +0 -32
- data/spec/unit/indirector/ldap_spec.rb +0 -151
- data/spec/unit/indirector/node/ldap_spec.rb +0 -463
- data/spec/unit/indirector/node/write_only_yaml_spec.rb +0 -11
- data/spec/unit/module_tool/applications/builder_spec.rb +0 -439
- data/spec/unit/network/http/api/ca/v1_spec.rb +0 -26
- data/spec/unit/network/http/rack/rest_spec.rb +0 -322
- data/spec/unit/network/http/rack_spec.rb +0 -42
- data/spec/unit/network/http/webrick/rest_spec.rb +0 -230
- data/spec/unit/network/http/webrick_spec.rb +0 -277
- data/spec/unit/network/server_spec.rb +0 -94
- data/spec/unit/provider/augeas/augeas_spec.rb +0 -1096
- data/spec/unit/provider/cisco_spec.rb +0 -14
- data/spec/unit/provider/cron/crontab_spec.rb +0 -206
- data/spec/unit/provider/cron/parsed_spec.rb +0 -355
- data/spec/unit/provider/host/parsed_spec.rb +0 -219
- data/spec/unit/provider/interface/cisco_spec.rb +0 -53
- data/spec/unit/provider/macauthorization_spec.rb +0 -134
- data/spec/unit/provider/mcx/mcxcontent_spec.rb +0 -190
- data/spec/unit/provider/mount/parsed_spec.rb +0 -318
- data/spec/unit/provider/mount_spec.rb +0 -169
- data/spec/unit/provider/naginator_spec.rb +0 -78
- data/spec/unit/provider/network_device_spec.rb +0 -152
- data/spec/unit/provider/package/dnfmodule_spec.rb +0 -247
- data/spec/unit/provider/package_targetable_spec.rb +0 -60
- data/spec/unit/provider/scheduled_task/win32_taskscheduler_spec.rb +0 -2050
- data/spec/unit/provider/selboolean_spec.rb +0 -34
- data/spec/unit/provider/selmodule-example.pp +0 -0
- data/spec/unit/provider/selmodule_spec.rb +0 -154
- data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +0 -259
- data/spec/unit/provider/sshkey/parsed_spec.rb +0 -92
- data/spec/unit/provider/vlan/cisco_spec.rb +0 -53
- data/spec/unit/provider/yumrepo/inifile_spec.rb +0 -413
- data/spec/unit/provider/zfs/zfs_spec.rb +0 -171
- data/spec/unit/provider/zone/solaris_spec.rb +0 -261
- data/spec/unit/provider/zpool/zpool_spec.rb +0 -250
- data/spec/unit/settings/server_list_setting_spec.rb +0 -21
- data/spec/unit/ssl/certificate_authority/autosign_command_spec.rb +0 -29
- data/spec/unit/ssl/certificate_authority/interface_spec.rb +0 -563
- data/spec/unit/ssl/certificate_authority_spec.rb +0 -1165
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +0 -196
- data/spec/unit/ssl/configuration_spec.rb +0 -138
- data/spec/unit/ssl/inventory_spec.rb +0 -155
- data/spec/unit/test/test_helper_spec.rb +0 -17
- data/spec/unit/type/augeas_spec.rb +0 -120
- data/spec/unit/type/computer_spec.rb +0 -77
- data/spec/unit/type/cron_spec.rb +0 -539
- data/spec/unit/type/host_spec.rb +0 -680
- data/spec/unit/type/interface_spec.rb +0 -128
- data/spec/unit/type/k5login_spec.rb +0 -204
- data/spec/unit/type/macauthorization_spec.rb +0 -111
- data/spec/unit/type/mailalias_spec.rb +0 -48
- data/spec/unit/type/maillist_spec.rb +0 -38
- data/spec/unit/type/mcx_spec.rb +0 -75
- data/spec/unit/type/mount_spec.rb +0 -622
- data/spec/unit/type/nagios_spec.rb +0 -312
- data/spec/unit/type/scheduled_task_spec.rb +0 -117
- data/spec/unit/type/selboolean_spec.rb +0 -41
- data/spec/unit/type/selmodule_spec.rb +0 -16
- data/spec/unit/type/ssh_authorized_key_spec.rb +0 -228
- data/spec/unit/type/sshkey_spec.rb +0 -75
- data/spec/unit/type/vlan_spec.rb +0 -42
- data/spec/unit/type/yumrepo_spec.rb +0 -476
- data/spec/unit/type/zfs_spec.rb +0 -45
- data/spec/unit/type/zone_spec.rb +0 -182
- data/spec/unit/type/zpool_spec.rb +0 -108
- data/spec/unit/util/nagios_maker_spec.rb +0 -121
- data/spec/unit/util/network_device/cisco/device_spec.rb +0 -491
- data/spec/unit/util/network_device/cisco/facts_spec.rb +0 -63
- data/spec/unit/util/network_device/cisco/interface_spec.rb +0 -97
- data/spec/unit/util/network_device/ipcalc_spec.rb +0 -61
- data/spec/unit/util/network_device/transport/ssh_spec.rb +0 -252
- data/spec/unit/util/network_device/transport/telnet_spec.rb +0 -90
@@ -163,6 +163,9 @@ type Puppet::AST = TypeSet[{
|
|
163
163
|
}
|
164
164
|
}
|
165
165
|
}],
|
166
|
+
ApplyBlockExpression => Object[{
|
167
|
+
parent => BlockExpression,
|
168
|
+
}],
|
166
169
|
CaseOption => Object[{
|
167
170
|
parent => Expression,
|
168
171
|
attributes => {
|
@@ -397,6 +400,19 @@ type Puppet::AST = TypeSet[{
|
|
397
400
|
}
|
398
401
|
}
|
399
402
|
}],
|
403
|
+
ApplyExpression => Object[{
|
404
|
+
parent => Expression,
|
405
|
+
attributes => {
|
406
|
+
'arguments' => {
|
407
|
+
type => Array[Expression],
|
408
|
+
value => []
|
409
|
+
},
|
410
|
+
'body' => {
|
411
|
+
type => Optional[Expression],
|
412
|
+
value => undef
|
413
|
+
}
|
414
|
+
}
|
415
|
+
}],
|
400
416
|
IfExpression => Object[{
|
401
417
|
parent => Expression,
|
402
418
|
attributes => {
|
@@ -1216,6 +1216,14 @@ class BlockExpression < Expression
|
|
1216
1216
|
alias == eql?
|
1217
1217
|
end
|
1218
1218
|
|
1219
|
+
class ApplyBlockExpression < BlockExpression
|
1220
|
+
def self._pcore_type
|
1221
|
+
@_pcore_type ||= Types::PObjectType.new('Puppet::AST::ApplyBlockExpression', {
|
1222
|
+
'parent' => BlockExpression._pcore_type,
|
1223
|
+
})
|
1224
|
+
end
|
1225
|
+
end
|
1226
|
+
|
1219
1227
|
class CaseOption < Expression
|
1220
1228
|
def self._pcore_type
|
1221
1229
|
@_pcore_type ||= Types::PObjectType.new('Puppet::AST::CaseOption', {
|
@@ -2909,6 +2917,90 @@ class LambdaExpression < Expression
|
|
2909
2917
|
alias == eql?
|
2910
2918
|
end
|
2911
2919
|
|
2920
|
+
class ApplyExpression < Expression
|
2921
|
+
def self._pcore_type
|
2922
|
+
@_pcore_type ||= Types::PObjectType.new('Puppet::AST::ApplyExpression', {
|
2923
|
+
'parent' => Expression._pcore_type,
|
2924
|
+
'attributes' => {
|
2925
|
+
'arguments' => {
|
2926
|
+
'type' => Types::PArrayType.new(Expression._pcore_type),
|
2927
|
+
'value' => []
|
2928
|
+
},
|
2929
|
+
'body' => {
|
2930
|
+
'type' => Types::POptionalType.new(Expression._pcore_type),
|
2931
|
+
'value' => nil
|
2932
|
+
}
|
2933
|
+
}
|
2934
|
+
})
|
2935
|
+
end
|
2936
|
+
|
2937
|
+
def self.from_hash(init_hash)
|
2938
|
+
from_asserted_hash(Types::TypeAsserter.assert_instance_of('Puppet::AST::ApplyExpression initializer', _pcore_type.init_hash_type, init_hash))
|
2939
|
+
end
|
2940
|
+
|
2941
|
+
def self.from_asserted_hash(init_hash)
|
2942
|
+
new(
|
2943
|
+
init_hash['locator'],
|
2944
|
+
init_hash['offset'],
|
2945
|
+
init_hash['length'],
|
2946
|
+
init_hash.fetch('arguments') { _pcore_type['arguments'].value },
|
2947
|
+
init_hash['body'])
|
2948
|
+
end
|
2949
|
+
|
2950
|
+
def self.create(locator, offset, length, arguments = _pcore_type['arguments'].value, body = nil)
|
2951
|
+
ta = Types::TypeAsserter
|
2952
|
+
attrs = _pcore_type.attributes(true)
|
2953
|
+
ta.assert_instance_of('Puppet::AST::Positioned[locator]', attrs['locator'].type, locator)
|
2954
|
+
ta.assert_instance_of('Puppet::AST::Positioned[offset]', attrs['offset'].type, offset)
|
2955
|
+
ta.assert_instance_of('Puppet::AST::Positioned[length]', attrs['length'].type, length)
|
2956
|
+
ta.assert_instance_of('Puppet::AST::ApplyExpression[arguments]', attrs['arguments'].type, arguments)
|
2957
|
+
ta.assert_instance_of('Puppet::AST::ApplyExpression[body]', attrs['body'].type, body)
|
2958
|
+
new(locator, offset, length, arguments, body)
|
2959
|
+
end
|
2960
|
+
|
2961
|
+
attr_reader :arguments
|
2962
|
+
attr_reader :body
|
2963
|
+
|
2964
|
+
def initialize(locator, offset, length, arguments = _pcore_type['arguments'].value, body = nil)
|
2965
|
+
super(locator, offset, length)
|
2966
|
+
@hash = @hash ^ arguments.hash ^ body.hash
|
2967
|
+
@arguments = arguments
|
2968
|
+
@body = body
|
2969
|
+
end
|
2970
|
+
|
2971
|
+
def _pcore_init_hash
|
2972
|
+
result = super
|
2973
|
+
result['arguments'] = @arguments unless _pcore_type['arguments'].default_value?(@arguments)
|
2974
|
+
result['body'] = @body unless @body == nil
|
2975
|
+
result
|
2976
|
+
end
|
2977
|
+
|
2978
|
+
def _pcore_contents
|
2979
|
+
@arguments.each { |value| yield(value) }
|
2980
|
+
yield(@body) unless @body.nil?
|
2981
|
+
end
|
2982
|
+
|
2983
|
+
def _pcore_all_contents(path, &block)
|
2984
|
+
path << self
|
2985
|
+
@arguments.each do |value|
|
2986
|
+
block.call(value, path)
|
2987
|
+
value._pcore_all_contents(path, &block)
|
2988
|
+
end
|
2989
|
+
unless @body.nil?
|
2990
|
+
block.call(@body, path)
|
2991
|
+
@body._pcore_all_contents(path, &block)
|
2992
|
+
end
|
2993
|
+
path.pop
|
2994
|
+
end
|
2995
|
+
|
2996
|
+
def eql?(o)
|
2997
|
+
super &&
|
2998
|
+
@arguments.eql?(o.arguments) &&
|
2999
|
+
@body.eql?(o.body)
|
3000
|
+
end
|
3001
|
+
alias == eql?
|
3002
|
+
end
|
3003
|
+
|
2912
3004
|
class IfExpression < Expression
|
2913
3005
|
def self._pcore_type
|
2914
3006
|
@_pcore_type ||= Types::PObjectType.new('Puppet::AST::IfExpression', {
|
@@ -4788,6 +4880,7 @@ def self.register_pcore_types
|
|
4788
4880
|
Model::KeyedEntry,
|
4789
4881
|
Model::LiteralHash,
|
4790
4882
|
Model::BlockExpression,
|
4883
|
+
Model::ApplyBlockExpression,
|
4791
4884
|
Model::CaseOption,
|
4792
4885
|
Model::CaseExpression,
|
4793
4886
|
Model::QueryExpression,
|
@@ -4814,6 +4907,7 @@ def self.register_pcore_types
|
|
4814
4907
|
Model::HostClassDefinition,
|
4815
4908
|
Model::PlanDefinition,
|
4816
4909
|
Model::LambdaExpression,
|
4910
|
+
Model::ApplyExpression,
|
4817
4911
|
Model::IfExpression,
|
4818
4912
|
Model::UnlessExpression,
|
4819
4913
|
Model::CallExpression,
|
@@ -28,7 +28,6 @@ class Factory
|
|
28
28
|
BUILD_VISITOR = Visitor.new(self, 'build')
|
29
29
|
INFER_VISITOR = Visitor.new(self, 'infer')
|
30
30
|
INTERPOLATION_VISITOR = Visitor.new(self, 'interpolate')
|
31
|
-
MAPOFFSET_VISITOR = Visitor.new(self, 'map_offset')
|
32
31
|
|
33
32
|
def self.infer(o)
|
34
33
|
if o.instance_of?(Factory)
|
@@ -90,29 +89,6 @@ class Factory
|
|
90
89
|
end
|
91
90
|
end
|
92
91
|
|
93
|
-
def map_offset(model, locator)
|
94
|
-
MAPOFFSET_VISITOR.visit_this_1(self, model, locator)
|
95
|
-
end
|
96
|
-
|
97
|
-
def map_offset_Object(o, locator)
|
98
|
-
o
|
99
|
-
end
|
100
|
-
|
101
|
-
def map_offset_Factory(o, locator)
|
102
|
-
map_offset(o.model, locator)
|
103
|
-
end
|
104
|
-
|
105
|
-
def map_offset_Positioned(o, locator)
|
106
|
-
# Transpose the local offset, length to global "coordinates"
|
107
|
-
global_offset, global_length = locator.to_global(o.offset, o.length)
|
108
|
-
|
109
|
-
# mutate
|
110
|
-
o.instance_variable_set(:'@offset', global_offset)
|
111
|
-
o.instance_variable_set(:'@length', global_length)
|
112
|
-
# Change locator since the positions were transposed to the global coordinates
|
113
|
-
o.instance_variable_set(:'@locator', locator.locator) if locator.is_a? Puppet::Pops::Parser::Locator::SubLocator
|
114
|
-
end
|
115
|
-
|
116
92
|
# Polymorphic interpolate
|
117
93
|
def interpolate()
|
118
94
|
INTERPOLATION_VISITOR.visit_this_class(self, @model_class, EMPTY_ARRAY)
|
@@ -266,6 +242,11 @@ class Factory
|
|
266
242
|
@init_hash['else_expr'] = els
|
267
243
|
end
|
268
244
|
|
245
|
+
def build_ApplyExpression(o, args, body)
|
246
|
+
@init_hash['arguments'] = args
|
247
|
+
@init_hash['body'] = body
|
248
|
+
end
|
249
|
+
|
269
250
|
def build_MatchExpression(o, op, a, b)
|
270
251
|
@init_hash[KEY_OPERATOR] = op
|
271
252
|
build_BinaryExpression(o, a, b)
|
@@ -452,7 +433,8 @@ class Factory
|
|
452
433
|
@init_hash[KEY_LOCATOR] = locator
|
453
434
|
@init_hash['leading_line_count'] = locator.leading_line_count
|
454
435
|
@init_hash['leading_line_offset'] = locator.leading_line_offset
|
455
|
-
|
436
|
+
# Index is held in sublocator's parent locator - needed to be able to reconstruct
|
437
|
+
@init_hash['line_offsets'] = locator.locator.line_index
|
456
438
|
end
|
457
439
|
|
458
440
|
def build_SelectorEntry(o, matching, value)
|
@@ -747,6 +729,8 @@ class Factory
|
|
747
729
|
|
748
730
|
def self.STRING(*args); new(ConcatenatedString, args); end
|
749
731
|
|
732
|
+
def self.SUBLOCATE(token, expr) new(SubLocatedExpression, token, expr); end
|
733
|
+
|
750
734
|
def self.LIST(entries); new(LiteralList, entries); end
|
751
735
|
|
752
736
|
def self.PARAM(name, expr=nil); new(Parameter, name, expr); end
|
@@ -781,19 +765,6 @@ class Factory
|
|
781
765
|
o.instance_of?(Factory) && o.model_class <= QualifiedReference ? self : new(QualifiedReference, o)
|
782
766
|
end
|
783
767
|
|
784
|
-
def self.SUBLOCATE(token, expr_factory)
|
785
|
-
# expr is a Factory wrapped LiteralString, or ConcatenatedString
|
786
|
-
# The token is SUBLOCATED token which has a SubLocator as the token's locator
|
787
|
-
# Use the SubLocator to recalculate the offsets and lengths.
|
788
|
-
model = expr_factory.model
|
789
|
-
locator = token.locator
|
790
|
-
expr_factory.map_offset(model, locator)
|
791
|
-
model._pcore_all_contents([]) { |element| expr_factory.map_offset(element, locator) }
|
792
|
-
|
793
|
-
# Returned the factory wrapping the now offset/length transformed expression(s)
|
794
|
-
expr_factory
|
795
|
-
end
|
796
|
-
|
797
768
|
def self.TEXT(expr)
|
798
769
|
new(TextExpression, infer(expr).interpolate)
|
799
770
|
end
|
@@ -971,6 +942,14 @@ class Factory
|
|
971
942
|
new(PlanDefinition, name, parameters, body, nil)
|
972
943
|
end
|
973
944
|
|
945
|
+
def self.APPLY(arguments, body)
|
946
|
+
new(ApplyExpression, arguments, body)
|
947
|
+
end
|
948
|
+
|
949
|
+
def self.APPLY_BLOCK(statements)
|
950
|
+
new(ApplyBlockExpression, statements)
|
951
|
+
end
|
952
|
+
|
974
953
|
def self.FUNCTION(name, parameters, body, return_type)
|
975
954
|
new(FunctionDefinition, name, parameters, body, return_type)
|
976
955
|
end
|
@@ -56,6 +56,7 @@ class ModelLabelProvider
|
|
56
56
|
def label_UnaryMinusExpression o ; "Unary Minus" end
|
57
57
|
def label_UnfoldExpression o ; "Unfold" end
|
58
58
|
def label_BlockExpression o ; "Block Expression" end
|
59
|
+
def label_ApplyBlockExpression o ; "Apply Block Expression" end
|
59
60
|
def label_ConcatenatedString o ; "Double Quoted String" end
|
60
61
|
def label_HeredocExpression o ; "'@(#{o.syntax})' expression" end
|
61
62
|
def label_HostClassDefinition o ; "Host Class Definition" end
|
@@ -71,6 +72,7 @@ class ModelLabelProvider
|
|
71
72
|
def label_UnlessExpression o ; "'unless' Statement" end
|
72
73
|
def label_CallNamedFunctionExpression o ; "Function Call" end
|
73
74
|
def label_CallMethodExpression o ; "Method call" end
|
75
|
+
def label_ApplyExpression o ; "'apply' expression" end
|
74
76
|
def label_CapabilityMapping o ; "Capability Mapping" end
|
75
77
|
def label_CaseExpression o ; "'case' statement" end
|
76
78
|
def label_CaseOption o ; "Case Option" end
|
@@ -104,6 +106,8 @@ class ModelLabelProvider
|
|
104
106
|
def label_Sensitive o ; "Sensitive" end
|
105
107
|
def label_Timestamp o ; "Timestamp" end
|
106
108
|
def label_Timespan o ; "Timespan" end
|
109
|
+
def label_Version o ; "Semver" end
|
110
|
+
def label_VersionRange o ; "SemverRange" end
|
107
111
|
|
108
112
|
def label_PResourceType o
|
109
113
|
if o.title
|
@@ -124,7 +128,10 @@ class ModelLabelProvider
|
|
124
128
|
simple_name[1..-5] + "-Type"
|
125
129
|
else
|
126
130
|
n = o.name
|
127
|
-
n.nil?
|
131
|
+
if n.nil?
|
132
|
+
n = o.respond_to?(:_pcore_type) ? o._pcore_type.name : 'Anonymous Class'
|
133
|
+
end
|
134
|
+
n
|
128
135
|
end
|
129
136
|
end
|
130
137
|
end
|
@@ -23,7 +23,7 @@ token FUNCTION
|
|
23
23
|
token TYPE
|
24
24
|
token PRIVATE ATTR
|
25
25
|
token APPLICATION PRODUCES CONSUMES SITE
|
26
|
-
token PLAN
|
26
|
+
token PLAN APPLY
|
27
27
|
token LOW
|
28
28
|
|
29
29
|
prechigh
|
@@ -260,6 +260,7 @@ primary_expression
|
|
260
260
|
| application_expression
|
261
261
|
| hostclass_expression
|
262
262
|
| plan_expression
|
263
|
+
| apply_expression
|
263
264
|
| node_definition_expression
|
264
265
|
| site_definition_expression
|
265
266
|
| epp_render_expression
|
@@ -557,6 +558,16 @@ plan_expression
|
|
557
558
|
result = add_definition(definition)
|
558
559
|
}
|
559
560
|
|
561
|
+
apply_expression
|
562
|
+
: APPLY LPAREN arguments endcomma RPAREN LBRACE statements RBRACE {
|
563
|
+
result = Factory.APPLY(val[2], Factory.APPLY_BLOCK(val[6]))
|
564
|
+
loc result, val[0], val[7]
|
565
|
+
}
|
566
|
+
| APPLY LPAREN arguments endcomma RPAREN LBRACE RBRACE {
|
567
|
+
result = Factory.APPLY(val[2], Factory.APPLY_BLOCK([]))
|
568
|
+
loc result, val[0], val[6]
|
569
|
+
}
|
570
|
+
|
560
571
|
#---HOSTCLASS
|
561
572
|
#
|
562
573
|
# Produces Model::HostClassDefinition
|
@@ -846,8 +857,8 @@ heredoc
|
|
846
857
|
: HEREDOC sublocated_text { result = Factory.HEREDOC(val[0][:value], val[1]); loc result, val[0] }
|
847
858
|
|
848
859
|
sublocated_text
|
849
|
-
: SUBLOCATE string { result = Factory.SUBLOCATE(val[0], val[1]); }
|
850
|
-
| SUBLOCATE dq_string { result = Factory.SUBLOCATE(val[0], val[1]); }
|
860
|
+
: SUBLOCATE string { result = Factory.SUBLOCATE(val[0], val[1]); loc result, val[0] }
|
861
|
+
| SUBLOCATE dq_string { result = Factory.SUBLOCATE(val[0], val[1]); loc result, val[0] }
|
851
862
|
|
852
863
|
epp_expression
|
853
864
|
: EPP_START epp_parameters_list optional_statements { result = Factory.EPP(val[1], val[2]); loc result, val[0] }
|
@@ -20,7 +20,7 @@ module Puppet
|
|
20
20
|
module Parser
|
21
21
|
class Parser < Racc::Parser
|
22
22
|
|
23
|
-
module_eval(<<'...end egrammar.ra/module_eval...', 'egrammar.ra',
|
23
|
+
module_eval(<<'...end egrammar.ra/module_eval...', 'egrammar.ra', 939)
|
24
24
|
|
25
25
|
# Make emacs happy
|
26
26
|
# Local Variables:
|
@@ -30,307 +30,322 @@ module_eval(<<'...end egrammar.ra/module_eval...', 'egrammar.ra', 928)
|
|
30
30
|
##### State transition tables begin ###
|
31
31
|
|
32
32
|
clist = [
|
33
|
-
'
|
34
|
-
'
|
35
|
-
'
|
36
|
-
'
|
37
|
-
'
|
38
|
-
'
|
39
|
-
'
|
40
|
-
'
|
41
|
-
'
|
42
|
-
'
|
43
|
-
'
|
44
|
-
'
|
45
|
-
'
|
46
|
-
'
|
47
|
-
'
|
48
|
-
'
|
49
|
-
'
|
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
|
-
'70,
|
75
|
-
'
|
76
|
-
'
|
77
|
-
',
|
78
|
-
'
|
79
|
-
'
|
80
|
-
'
|
81
|
-
'
|
82
|
-
'
|
83
|
-
'
|
84
|
-
'
|
85
|
-
',
|
86
|
-
'
|
87
|
-
',
|
88
|
-
'
|
89
|
-
'
|
90
|
-
'
|
91
|
-
'
|
92
|
-
'
|
93
|
-
',
|
94
|
-
'
|
95
|
-
'
|
96
|
-
',,,,,,
|
97
|
-
'70,
|
98
|
-
',,
|
99
|
-
'
|
100
|
-
'21,20,,,,,,
|
101
|
-
'
|
102
|
-
'
|
103
|
-
'46,,,,,
|
104
|
-
'
|
105
|
-
'
|
106
|
-
'
|
107
|
-
'21,20,,,,,,
|
108
|
-
'
|
109
|
-
'
|
110
|
-
',
|
111
|
-
'
|
112
|
-
',
|
113
|
-
'
|
114
|
-
'
|
115
|
-
'
|
116
|
-
'
|
117
|
-
'
|
118
|
-
'
|
119
|
-
',
|
120
|
-
'
|
121
|
-
',
|
122
|
-
'
|
123
|
-
'
|
124
|
-
'
|
125
|
-
'
|
126
|
-
'
|
127
|
-
'69,
|
128
|
-
'
|
129
|
-
',
|
130
|
-
'
|
131
|
-
',82
|
132
|
-
'
|
133
|
-
',,
|
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
|
-
'
|
164
|
-
'
|
165
|
-
'60,
|
166
|
-
',
|
167
|
-
'
|
168
|
-
'
|
169
|
-
',,,,
|
170
|
-
'
|
171
|
-
'
|
172
|
-
'60,
|
173
|
-
',
|
174
|
-
'
|
175
|
-
',
|
176
|
-
'
|
177
|
-
'
|
178
|
-
'
|
179
|
-
'
|
180
|
-
'
|
181
|
-
'
|
182
|
-
',
|
183
|
-
'
|
184
|
-
'
|
185
|
-
',
|
186
|
-
'
|
187
|
-
'
|
188
|
-
'
|
189
|
-
'
|
190
|
-
'
|
191
|
-
'
|
192
|
-
'
|
193
|
-
'
|
194
|
-
'70
|
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
|
-
',
|
230
|
-
'
|
231
|
-
'
|
232
|
-
'
|
233
|
-
',,,,
|
234
|
-
',,,,,,
|
235
|
-
'
|
236
|
-
'
|
237
|
-
'
|
238
|
-
'
|
239
|
-
',
|
240
|
-
'
|
241
|
-
'
|
242
|
-
'
|
243
|
-
'
|
244
|
-
'
|
245
|
-
',,,,,,,
|
246
|
-
',,
|
247
|
-
'
|
248
|
-
',
|
249
|
-
'
|
250
|
-
',,,,
|
251
|
-
',,
|
252
|
-
'
|
253
|
-
'
|
254
|
-
'
|
255
|
-
'
|
256
|
-
',
|
257
|
-
',,
|
258
|
-
'
|
259
|
-
'
|
260
|
-
'
|
261
|
-
'
|
262
|
-
',
|
263
|
-
'
|
264
|
-
',
|
265
|
-
'
|
266
|
-
'
|
267
|
-
',,,,,,
|
268
|
-
'70,
|
269
|
-
'
|
270
|
-
'
|
271
|
-
'
|
272
|
-
',,
|
273
|
-
'
|
274
|
-
',,
|
275
|
-
'
|
276
|
-
'
|
277
|
-
'
|
278
|
-
'
|
279
|
-
'
|
280
|
-
'
|
281
|
-
'
|
282
|
-
',
|
283
|
-
',
|
284
|
-
'
|
285
|
-
'
|
286
|
-
'
|
287
|
-
'
|
288
|
-
'
|
289
|
-
'
|
290
|
-
',
|
291
|
-
'
|
292
|
-
'
|
293
|
-
'
|
294
|
-
'111,,,
|
295
|
-
'
|
296
|
-
'
|
297
|
-
'
|
298
|
-
'104,
|
299
|
-
'
|
300
|
-
',
|
301
|
-
'
|
302
|
-
'
|
303
|
-
'
|
304
|
-
'
|
305
|
-
'
|
306
|
-
'
|
307
|
-
'
|
308
|
-
'
|
309
|
-
'102
|
310
|
-
',
|
311
|
-
'
|
312
|
-
',,
|
313
|
-
'
|
314
|
-
'
|
315
|
-
',
|
316
|
-
'
|
317
|
-
'
|
318
|
-
'
|
319
|
-
'
|
320
|
-
'
|
321
|
-
'
|
322
|
-
'
|
323
|
-
'
|
324
|
-
',
|
325
|
-
'
|
326
|
-
'
|
327
|
-
'
|
328
|
-
'
|
329
|
-
'
|
330
|
-
'
|
331
|
-
'
|
332
|
-
'
|
333
|
-
|
33
|
+
'67,79,304,-148,65,73,304,74,89,90,91,73,116,74,-290,307,426,179,74,-281',
|
34
|
+
'418,352,-293,305,21,20,118,305,121,-295,131,54,117,57,128,69,12,342',
|
35
|
+
'63,46,49,292,56,47,10,11,-148,287,66,19,180,416,48,120,307,17,18,-290',
|
36
|
+
'92,94,93,95,-281,84,353,-293,130,270,295,55,127,293,-295,45,80,97,82',
|
37
|
+
'83,129,-190,-190,64,51,70,71,58,415,116,62,60,61,67,79,72,427,65,73',
|
38
|
+
'116,74,72,154,118,154,121,471,403,470,117,131,271,414,118,128,121,429',
|
39
|
+
'21,20,117,-280,154,404,413,54,157,57,157,69,12,120,63,46,49,475,56,47',
|
40
|
+
'10,11,116,120,66,19,476,157,48,130,304,17,18,127,330,97,118,331,121',
|
41
|
+
'84,131,129,117,526,128,55,-280,131,458,45,80,128,82,83,471,399,470,64',
|
42
|
+
'51,70,71,58,-235,120,62,60,61,67,79,72,116,65,73,434,74,400,130,459',
|
43
|
+
'98,99,127,436,458,130,118,97,121,127,129,131,117,21,20,128,399,129,124',
|
44
|
+
'307,54,396,57,394,69,136,116,63,46,49,390,56,47,120,443,181,79,66,19',
|
45
|
+
'182,118,48,121,444,17,18,117,130,98,99,131,127,84,131,128,97,388,128',
|
46
|
+
'55,129,131,350,45,80,128,82,83,120,333,332,64,51,70,71,58,133,134,62',
|
47
|
+
'60,61,67,79,72,116,65,73,130,74,351,130,127,-190,-190,127,133,134,130',
|
48
|
+
'118,129,121,127,129,131,117,21,20,128,447,129,-191,-191,54,383,57,379',
|
49
|
+
'69,136,116,63,46,49,450,56,47,120,-192,-192,377,66,19,399,118,48,121',
|
50
|
+
'399,17,18,117,130,98,99,131,127,84,376,128,97,-194,-194,55,129,131,160',
|
51
|
+
'45,80,128,82,83,120,283,282,64,51,70,71,58,283,282,62,60,61,67,79,72',
|
52
|
+
'358,65,73,130,74,283,282,127,131,460,453,461,128,130,131,129,171,127',
|
53
|
+
'128,131,464,21,20,128,465,129,283,282,54,350,57,96,69,12,96,63,46,49',
|
54
|
+
'468,56,47,10,11,96,130,66,19,472,127,48,130,304,17,18,127,130,129,283',
|
55
|
+
'282,127,84,131,129,474,307,128,55,129,344,345,45,80,305,82,83,96,88',
|
56
|
+
'328,64,51,70,71,58,-236,116,62,60,61,67,79,72,328,65,73,304,74,322,130',
|
57
|
+
'118,321,121,127,485,486,117,295,488,307,291,129,490,379,21,20,350,305',
|
58
|
+
'290,171,160,54,287,57,494,69,12,120,63,46,49,297,56,47,10,11,-235,496',
|
59
|
+
'66,19,384,350,48,286,499,17,18,386,500,304,350,285,96,84,503,96,304',
|
60
|
+
'272,88,55,205,507,307,45,80,474,82,83,509,307,305,64,51,70,71,58,202',
|
61
|
+
'305,62,60,61,67,79,72,511,65,73,512,74,513,350,515,516,200,184,358,521',
|
62
|
+
'522,523,524,525,171,170,161,160,21,20,96,534,88,537,538,54,539,57,85',
|
63
|
+
'69,12,541,63,46,49,86,56,47,10,11,542,543,66,19,544,421,48,,,17,18,',
|
64
|
+
',,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72',
|
65
|
+
',65,73,,74,,,,,,,,,,,,,,,,,21,20,145,,,,,54,,57,,69,12,,63,46,49,,56',
|
66
|
+
'47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,149',
|
67
|
+
'146,70,71,147,153,152,148,60,61,67,79,72,,65,73,,74,530,,,,,,,,,,,,',
|
68
|
+
',,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17',
|
69
|
+
'18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67',
|
70
|
+
'79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49',
|
71
|
+
',56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64',
|
72
|
+
'51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,',
|
73
|
+
',,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,',
|
74
|
+
',,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,',
|
75
|
+
'74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66',
|
76
|
+
'19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,',
|
77
|
+
',62,60,61,67,79,72,,65,73,,74,536,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,',
|
78
|
+
'69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,',
|
79
|
+
',,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,528',
|
80
|
+
',,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66',
|
81
|
+
'19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,',
|
82
|
+
',62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69',
|
83
|
+
'12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45',
|
84
|
+
'80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,',
|
85
|
+
',,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48',
|
86
|
+
',,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61',
|
87
|
+
'67,79,72,,65,73,186,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63',
|
88
|
+
'46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82',
|
89
|
+
'83,,,,149,146,70,71,147,153,152,148,60,61,67,79,72,,65,73,191,74,,,',
|
90
|
+
',,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19',
|
91
|
+
',,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,149,146,70,71,147,153',
|
92
|
+
'152,148,60,61,67,79,72,,65,73,,74,193,,,,,,,,,,,,,,,,21,20,,,,,,54,',
|
93
|
+
'57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,',
|
94
|
+
'55,,,,45,80,,82,83,,,,149,146,70,71,147,153,152,148,60,61,67,79,72,',
|
95
|
+
'65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47',
|
96
|
+
'10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51',
|
97
|
+
'70,71,58,,,62,60,61,67,79,72,,65,73,,74,518,,,,,,,,,,,,,,,,21,20,,,',
|
98
|
+
',,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84',
|
99
|
+
',,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73',
|
100
|
+
',74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66',
|
101
|
+
'19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,',
|
102
|
+
',62,60,61,67,79,72,,65,73,,204,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69',
|
103
|
+
'136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80',
|
104
|
+
',82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,',
|
105
|
+
',,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18',
|
106
|
+
',,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79',
|
107
|
+
'72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56',
|
108
|
+
'47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64',
|
109
|
+
'51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,',
|
110
|
+
',,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84',
|
111
|
+
',,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73',
|
112
|
+
',74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11',
|
113
|
+
',,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71',
|
114
|
+
'58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57',
|
115
|
+
',69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55',
|
116
|
+
',,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,',
|
117
|
+
',,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19',
|
118
|
+
',,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62',
|
119
|
+
'60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,',
|
120
|
+
'63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80',
|
121
|
+
',82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,',
|
122
|
+
',,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17',
|
123
|
+
'18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67',
|
124
|
+
'79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49',
|
125
|
+
',56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,',
|
126
|
+
',,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20',
|
127
|
+
',,,,,222,237,228,238,69,230,240,232,46,220,,224,218,,,,,66,19,241,236',
|
128
|
+
'219,,,17,217,,,,,,,84,,,,,239,223,,,,45,80,,82,83,,,,233,221,234,235',
|
129
|
+
'229,243,242,231,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,',
|
130
|
+
',54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,',
|
131
|
+
',,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74',
|
132
|
+
',,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19',
|
133
|
+
',,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62',
|
134
|
+
'60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136',
|
135
|
+
',63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82',
|
136
|
+
'83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,',
|
137
|
+
'21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,',
|
138
|
+
',,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72',
|
139
|
+
',65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47',
|
140
|
+
',,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70',
|
141
|
+
'71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,',
|
142
|
+
'57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55',
|
143
|
+
',,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,',
|
144
|
+
',,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,',
|
145
|
+
'48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60',
|
146
|
+
'61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63',
|
147
|
+
'46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83',
|
148
|
+
',,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21',
|
149
|
+
'20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,',
|
150
|
+
',84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65',
|
151
|
+
'73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,',
|
152
|
+
',,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71',
|
153
|
+
'58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57',
|
154
|
+
',69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,',
|
155
|
+
'45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,',
|
156
|
+
',,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48',
|
157
|
+
',,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61',
|
158
|
+
'67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46',
|
159
|
+
'49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,',
|
160
|
+
',64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20',
|
161
|
+
',,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84',
|
162
|
+
',,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73',
|
163
|
+
',74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66',
|
164
|
+
'19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,',
|
165
|
+
',62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69',
|
166
|
+
'136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80',
|
167
|
+
',82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,',
|
168
|
+
',,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18',
|
169
|
+
',,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79',
|
170
|
+
'72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56',
|
171
|
+
'47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51',
|
172
|
+
'70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54',
|
173
|
+
',57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55',
|
174
|
+
',,265,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74',
|
175
|
+
',,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66',
|
176
|
+
'19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,149,146,70,71,147',
|
177
|
+
'153,152,148,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54',
|
178
|
+
',57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55',
|
179
|
+
',,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,',
|
180
|
+
',,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,',
|
181
|
+
'48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60',
|
182
|
+
'61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63',
|
183
|
+
'46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82',
|
184
|
+
'83,,,,149,146,70,71,147,153,152,148,60,61,67,79,72,,65,73,,74,,,,,,',
|
185
|
+
',,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,',
|
186
|
+
'48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60',
|
187
|
+
'61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63',
|
188
|
+
'46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83',
|
189
|
+
',,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21',
|
190
|
+
'20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,',
|
191
|
+
',,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72',
|
192
|
+
',65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47',
|
193
|
+
'10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,149,146',
|
194
|
+
'70,71,147,153,152,148,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20',
|
195
|
+
',,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,',
|
196
|
+
',84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65',
|
197
|
+
'73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,',
|
198
|
+
',,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71',
|
199
|
+
'58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57',
|
200
|
+
',69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55',
|
201
|
+
',,,45,80,,82,83,,,,149,146,70,71,147,153,152,148,60,61,67,79,72,,65',
|
202
|
+
'73,,74,,,,,,,,,,,,,,,,,21,20,309,,,,,54,,57,,69,12,,63,46,49,,56,47',
|
203
|
+
'10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,149,146',
|
204
|
+
'70,71,147,153,152,148,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20',
|
205
|
+
',,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,',
|
206
|
+
',84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65',
|
207
|
+
'73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,',
|
208
|
+
',,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71',
|
209
|
+
'58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57',
|
210
|
+
',69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55',
|
211
|
+
',,,45,80,,82,83,,,,149,146,70,71,147,153,152,148,60,61,67,79,72,,65',
|
212
|
+
'73,,74,319,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47',
|
213
|
+
'10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51',
|
214
|
+
'70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54',
|
215
|
+
',57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,',
|
216
|
+
',55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74',
|
217
|
+
',,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19',
|
218
|
+
',,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62',
|
219
|
+
'60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,',
|
220
|
+
'63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80',
|
221
|
+
',82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,',
|
222
|
+
',,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17',
|
223
|
+
'18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67',
|
224
|
+
'79,72,,65,73,,74,477,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46',
|
225
|
+
'49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,',
|
226
|
+
',64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20',
|
227
|
+
',,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,',
|
228
|
+
',84,,,,,,55,,,,45,80,,82,83,81,,,64,51,70,71,58,,,62,60,61,67,79,72',
|
229
|
+
',65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47',
|
230
|
+
'10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51',
|
231
|
+
'70,71,58,,,62,60,61,67,79,72,,65,73,,74,193,,,,,,,,,,,,,,,,21,20,,,',
|
232
|
+
',,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84',
|
233
|
+
',,,,,55,,,,45,80,,82,83,,,,149,146,70,71,147,153,152,148,60,61,67,79',
|
234
|
+
'72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56',
|
235
|
+
'47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,149',
|
236
|
+
'146,70,71,147,153,152,148,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,',
|
237
|
+
'21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,',
|
238
|
+
',,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72',
|
239
|
+
',65,73,,74,,,351,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56',
|
240
|
+
'47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51',
|
241
|
+
'70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54',
|
242
|
+
',57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55',
|
243
|
+
',,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,',
|
244
|
+
',,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,',
|
245
|
+
'48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60',
|
246
|
+
'61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63',
|
247
|
+
'46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83',
|
248
|
+
',,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,463,,,,,,,,,,,,,,,',
|
249
|
+
'21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18',
|
250
|
+
',,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79',
|
251
|
+
'72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56',
|
252
|
+
'47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51',
|
253
|
+
'70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54',
|
254
|
+
',57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55',
|
255
|
+
',,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,',
|
256
|
+
',,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19',
|
257
|
+
',,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,149,146,70,71,147,153',
|
258
|
+
'152,148,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57',
|
259
|
+
',69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55',
|
260
|
+
',,,45,80,,82,83,,,,149,146,70,71,147,153,152,148,60,61,67,79,72,,65',
|
261
|
+
'73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,',
|
262
|
+
',,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71',
|
263
|
+
'58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57',
|
264
|
+
',69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55',
|
265
|
+
',,,45,80,,82,83,,,,149,146,70,71,147,153,152,148,60,61,67,79,72,,65',
|
266
|
+
'73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10',
|
267
|
+
'11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,149,146',
|
268
|
+
'70,71,147,153,152,148,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20',
|
269
|
+
',,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,',
|
270
|
+
',84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65',
|
271
|
+
'73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,',
|
272
|
+
',,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71',
|
273
|
+
'58,,,62,60,61,67,79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57',
|
274
|
+
',69,136,,63,46,49,,56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,',
|
275
|
+
'45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,,,,,,',
|
276
|
+
',,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49,,56,47,,,,,66,19,,,48',
|
277
|
+
',,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61',
|
278
|
+
'67,79,72,,65,73,,74,406,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63',
|
279
|
+
'46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82',
|
280
|
+
'83,,,,64,51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,408,,,,,,,,,,,,',
|
281
|
+
',,,21,20,,,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17',
|
282
|
+
'18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64,51,70,71,58,,,62,60,61,67',
|
283
|
+
'79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,136,,63,46,49',
|
284
|
+
',56,47,,,,,66,19,,,48,,,17,18,,,,,,,84,,,,,,55,,,,45,80,,82,83,,,,64',
|
285
|
+
'51,70,71,58,,,62,60,61,67,79,72,,65,73,,74,430,,,,,,,,,,,,,,,,21,20',
|
286
|
+
',,,,,54,,57,,69,12,,63,46,49,,56,47,10,11,,,66,19,,,48,,,17,18,,,,,',
|
287
|
+
',84,,,,,,55,,,,45,80,,82,83,,,,149,146,70,71,147,153,152,148,60,61,67',
|
288
|
+
'79,72,,65,73,,74,,,,,,,,,,,,,,,,,21,20,,,,,,54,,57,,69,12,,63,46,49',
|
289
|
+
',56,47,10,11,,,66,19,,,48,,,17,18,181,79,,,182,,84,,,,,,55,,,,45,80',
|
290
|
+
',82,83,,,,149,146,70,71,147,153,152,148,60,61,116,,72,,,,179,,,176,',
|
291
|
+
',112,107,118,,121,,115,,117,,108,110,109,111,,,,84,181,79,,,182,,,,',
|
292
|
+
'180,80,120,,,,114,113,,,100,101,103,102,105,106,,98,99,,,,,,97,116,',
|
293
|
+
',,181,79,179,,182,176,344,345,112,107,118,380,121,,115,,117,,108,110',
|
294
|
+
'109,111,104,,,84,,,,,,,,,,180,80,120,,,179,114,113,176,116,100,101,103',
|
295
|
+
'102,105,106,,98,99,,,112,107,118,97,121,,115,84,117,,108,110,109,111',
|
296
|
+
',,,180,80,,,,,,,,,,,120,104,,,114,113,,,100,101,103,102,105,106,,98',
|
297
|
+
'99,116,,312,,,97,,,,,,,112,107,118,,121,116,115,,117,,108,110,109,111',
|
298
|
+
',,,,,118,104,121,,,,117,181,79,,120,182,,,114,113,,,100,101,103,102',
|
299
|
+
'105,106,,98,99,120,,,,,97,,,100,101,103,102,105,106,,98,99,116,,,179',
|
300
|
+
',97,176,,,,,,112,107,118,104,121,,115,,117,,108,110,109,111,84,,,,,',
|
301
|
+
'104,,,,180,80,,,,120,,,,114,113,,116,100,101,103,102,105,106,,98,99',
|
302
|
+
',,112,107,118,97,121,116,115,,117,,108,110,109,111,,,,,,118,,121,,,',
|
303
|
+
'117,,,,120,104,,,114,113,,,100,101,103,102,105,106,,98,99,120,,,,,97',
|
304
|
+
',,,,103,102,,116,,98,99,,,,,,97,,,112,107,118,,121,116,115,104,117,',
|
305
|
+
'108,110,109,111,,,,,107,118,,121,,,104,117,,108,,120,,,,114,113,,,100',
|
306
|
+
'101,103,102,105,106,,98,99,120,,,116,,97,,,100,101,103,102,105,106,',
|
307
|
+
'98,99,118,,121,116,,97,117,,,,,,,,,104,107,118,,121,,,,117,,108,,120',
|
308
|
+
',,,116,104,,,100,101,103,102,,,,98,99,120,118,,121,,97,,117,100,101',
|
309
|
+
'103,102,105,106,,98,99,,,,,,97,,,,,,120,,,,104,,,,,,103,102,116,,,98',
|
310
|
+
'99,,,,,104,97,,112,107,118,,121,,115,,117,,108,110,109,111,,,,,,,,,',
|
311
|
+
',,104,,,,120,,,,114,113,,116,100,101,103,102,105,106,,98,99,,,,107,118',
|
312
|
+
'97,121,,,,117,,108,,,,,,,,,,,,,,,,,,,120,104,,,,116,,,100,101,103,102',
|
313
|
+
'105,106,,98,99,112,107,118,,121,97,115,,117,,108,110,109,111,,,,,,,',
|
314
|
+
',,,,,,,,120,,,104,114,113,,116,100,101,103,102,105,106,,98,99,,,,107',
|
315
|
+
'118,97,121,,,,117,,108,,,,,,,,,,,,,,,,,,,120,104,,,,116,,,100,101,103',
|
316
|
+
'102,105,106,,98,99,112,107,118,,121,97,115,,117,,108,110,109,111,,,',
|
317
|
+
',,,,,,,,,,,,120,,,104,,116,,,100,101,103,102,105,106,,98,99,112,107',
|
318
|
+
'118,,121,97,115,,117,,108,110,109,111,,,,,,,,,,,,,,,,120,,,104,,113',
|
319
|
+
',,100,101,103,102,105,106,116,98,99,,,354,,,97,,,,112,107,118,,121,',
|
320
|
+
'115,,117,,108,110,109,111,,,,,,,,,,104,,,,,,120,,,,114,113,,,100,101',
|
321
|
+
'103,102,105,106,,98,99,116,-66,,,,97,-66,,,,,,112,107,118,,121,,115',
|
322
|
+
',117,,108,110,109,111,,,,,,,104,,,,,,,,,120,,,,114,113,,116,100,101',
|
323
|
+
'103,102,105,106,,98,99,,,112,107,118,97,121,,115,,117,,108,110,109,111',
|
324
|
+
',,,,,,,,,,,,,,,120,104,,,114,113,,116,100,101,103,102,105,106,,98,99',
|
325
|
+
',,112,107,118,97,121,,115,,117,,108,110,109,111,,,,,,,,,,,,,,,,120,104',
|
326
|
+
',,114,113,,,100,101,103,102,105,106,116,98,99,,,,,,97,,,,112,107,118',
|
327
|
+
'348,121,116,115,,117,,108,110,109,111,,,,,,118,,121,,104,,117,,,,120',
|
328
|
+
',,,114,113,,,100,101,103,102,105,106,,98,99,120,,,116,,97,,,100,101',
|
329
|
+
'103,102,,,,98,99,118,,121,,,97,117,,,,,,,,,104,,,,,,,,,,,,120,,,,,104',
|
330
|
+
',,100,101,103,102,105,106,,98,99,116,,310,,,97,,,,,,,112,107,118,,121',
|
331
|
+
',115,,117,,108,110,109,111,,,,,,,104,,,,,,,,,120,,,,114,113,,,100,101',
|
332
|
+
'103,102,105,106,,98,99,116,,311,,,97,,,,,,,112,107,118,,121,,115,,117',
|
333
|
+
',108,110,109,111,,,,,,,104,,,,,,,,,120,,,,114,113,,116,100,101,103,102',
|
334
|
+
'105,106,,98,99,,,112,107,118,97,121,,115,,117,,108,110,109,111,,,,,',
|
335
|
+
',,,,,,,,,,120,104,,,114,113,,,100,101,103,102,105,106,,98,99,,366,237',
|
336
|
+
'365,238,97,363,240,367,,360,,362,364,,,,,,,241,236,368,,,,361,,,,,,104',
|
337
|
+
',,,,,239,369,,,,,,,,,,,,372,370,373,371,374,243,242,375,366,237,365',
|
338
|
+
'238,,363,240,367,,360,,362,364,,,,,,,241,236,368,,,,361,,,,,,,,,,,,239',
|
339
|
+
'369,,,,,,,,,,,,372,370,373,371,374,243,242,375,366,237,365,238,,363',
|
340
|
+
'240,367,,360,,362,364,,,,,,,241,236,368,,,,361,,,,,,,,,,,,239,369,,',
|
341
|
+
',,,,,,,,,372,370,373,371,374,243,242,375,366,237,365,238,,363,240,367',
|
342
|
+
',360,,362,364,,,,,,,241,236,368,,,,361,,,,,,,,,,,,239,369,,,,,,,,,,',
|
343
|
+
',372,370,373,371,374,243,242,375,366,237,365,238,,363,240,367,,360,',
|
344
|
+
'362,364,,,,,,,241,236,368,,,,361,,,,,,,,,,,,239,369,,,,,,,,,,,,372,370',
|
345
|
+
'373,371,374,243,242,375,366,237,365,238,,363,240,367,,360,,362,364,',
|
346
|
+
',,,,,241,236,368,,,,361,,,,,,,,,,,,239,369,,,,,,,,,,,,372,370,373,371',
|
347
|
+
'374,243,242,375' ]
|
348
|
+
racc_action_table = arr = ::Array.new(10662, nil)
|
334
349
|
idx = 0
|
335
350
|
clist.each do |str|
|
336
351
|
str.split(',', -1).each do |i|
|
@@ -340,337 +355,353 @@ clist = [
|
|
340
355
|
end
|
341
356
|
|
342
357
|
clist = [
|
343
|
-
'
|
344
|
-
'
|
345
|
-
'
|
346
|
-
'
|
347
|
-
'
|
348
|
-
'
|
349
|
-
'
|
350
|
-
'
|
351
|
-
'
|
352
|
-
'
|
353
|
-
'
|
354
|
-
'12,
|
355
|
-
'
|
356
|
-
'
|
357
|
-
'
|
358
|
-
'
|
359
|
-
'
|
360
|
-
'
|
361
|
-
'
|
362
|
-
'
|
363
|
-
'
|
364
|
-
'
|
365
|
-
'
|
366
|
-
'
|
367
|
-
'
|
368
|
-
'
|
369
|
-
'
|
370
|
-
'
|
371
|
-
'
|
372
|
-
'
|
373
|
-
'
|
374
|
-
'
|
375
|
-
'
|
376
|
-
'
|
377
|
-
'
|
378
|
-
'
|
379
|
-
',,,
|
380
|
-
'
|
381
|
-
'
|
382
|
-
'
|
383
|
-
',
|
384
|
-
'
|
385
|
-
',
|
386
|
-
'
|
387
|
-
'
|
388
|
-
'
|
389
|
-
'
|
390
|
-
',,
|
391
|
-
'
|
392
|
-
'
|
393
|
-
'
|
394
|
-
'
|
395
|
-
'
|
396
|
-
'
|
397
|
-
'
|
398
|
-
'
|
399
|
-
'
|
400
|
-
',,,,,,,
|
401
|
-
'
|
402
|
-
'
|
403
|
-
'
|
404
|
-
'
|
405
|
-
'
|
406
|
-
'
|
407
|
-
',
|
408
|
-
'
|
409
|
-
'
|
410
|
-
',
|
411
|
-
'
|
412
|
-
',
|
413
|
-
'
|
414
|
-
'
|
415
|
-
',
|
416
|
-
'
|
417
|
-
'
|
418
|
-
'
|
419
|
-
',,,
|
420
|
-
'
|
421
|
-
'
|
422
|
-
'
|
423
|
-
',
|
424
|
-
'
|
425
|
-
'
|
426
|
-
',
|
427
|
-
'
|
428
|
-
'
|
429
|
-
'91
|
430
|
-
'
|
358
|
+
'88,88,202,220,88,88,306,88,7,7,7,184,245,184,219,202,324,322,324,218',
|
359
|
+
'318,227,235,202,88,88,245,306,245,234,57,88,245,88,57,88,88,202,88,88',
|
360
|
+
'88,157,88,88,88,88,220,317,88,88,322,316,88,245,184,88,88,219,7,7,7',
|
361
|
+
'7,218,88,227,235,57,118,323,88,57,157,234,88,88,245,88,88,57,220,220',
|
362
|
+
'88,88,88,88,88,315,246,88,88,88,336,336,88,327,336,336,137,336,184,221',
|
363
|
+
'246,146,246,468,308,468,246,230,118,314,137,230,137,329,336,336,137',
|
364
|
+
'230,51,308,313,336,221,336,146,336,336,246,336,336,336,410,336,336,336',
|
365
|
+
'336,249,137,336,336,410,51,336,230,305,336,336,230,192,246,249,192,249',
|
366
|
+
'336,147,230,249,504,147,336,230,149,504,336,336,149,336,336,406,341',
|
367
|
+
'406,336,336,336,336,336,346,249,336,336,336,18,18,336,251,18,18,347',
|
368
|
+
'18,304,147,392,249,249,147,349,392,149,251,249,251,149,147,12,251,18',
|
369
|
+
'18,12,298,149,12,295,18,294,18,293,18,18,244,18,18,18,288,18,18,251',
|
370
|
+
'355,200,200,18,18,200,244,18,244,357,18,18,244,12,251,251,168,12,18',
|
371
|
+
'58,168,251,284,58,18,12,60,359,18,18,60,18,18,244,197,197,18,18,18,18',
|
372
|
+
'18,16,16,18,18,18,19,19,18,250,19,19,168,19,361,58,168,49,49,58,59,59',
|
373
|
+
'60,250,168,250,60,58,64,250,19,19,64,378,60,65,65,19,280,19,277,19,19',
|
374
|
+
'138,19,19,19,381,19,19,250,66,66,276,19,19,385,138,19,138,387,19,19',
|
375
|
+
'138,64,250,250,383,64,19,274,383,250,67,67,19,64,228,390,19,19,228,19',
|
376
|
+
'19,138,125,125,19,19,19,19,19,166,166,19,19,19,20,20,19,267,20,20,383',
|
377
|
+
'20,167,167,383,229,393,383,394,229,228,233,383,231,228,233,132,397,20',
|
378
|
+
'20,132,398,228,169,169,20,216,20,214,20,20,213,20,20,20,405,20,20,20',
|
379
|
+
'20,212,229,20,20,407,229,20,233,399,20,20,233,132,229,183,183,132,20',
|
380
|
+
'136,233,408,399,136,20,132,434,434,20,20,399,20,20,211,206,190,20,20',
|
381
|
+
'20,20,20,188,135,20,20,20,21,21,20,185,21,21,160,21,174,136,135,172',
|
382
|
+
'135,136,417,419,135,159,424,160,155,136,433,540,21,21,435,160,150,148',
|
383
|
+
'145,21,144,21,442,21,21,135,21,21,21,160,21,21,21,21,141,446,21,21,282',
|
384
|
+
'449,21,140,454,21,21,283,455,282,456,139,123,21,462,122,283,119,87,21',
|
385
|
+
'85,471,282,21,21,472,21,21,474,283,282,21,21,21,21,21,81,283,21,21,21',
|
386
|
+
'4,4,21,476,4,4,479,4,482,483,484,485,80,68,489,492,493,498,501,502,62',
|
387
|
+
'61,53,52,4,4,8,514,5,517,519,4,520,4,1,4,4,527,4,4,4,4,4,4,4,4,529,531',
|
388
|
+
'4,4,535,320,4,,,4,4,,,,,,,4,,,,,,4,,,,4,4,,4,4,,,,4,4,4,4,4,,,4,4,4',
|
389
|
+
'50,50,4,,50,50,,50,,,,,,,,,,,,,,,,,50,50,50,,,,,50,,50,,50,50,,50,50',
|
390
|
+
'50,,50,50,50,50,,,50,50,,,50,,,50,50,,,,,,,50,,,,,,50,,,,50,50,,50,50',
|
391
|
+
',,,50,50,50,50,50,50,50,50,50,50,509,509,50,,509,509,,509,509,,,,,,',
|
392
|
+
',,,,,,,,,509,509,,,,,,509,,509,,509,509,,509,509,509,,509,509,509,509',
|
393
|
+
',,509,509,,,509,,,509,509,,,,,,,509,,,,,,509,,,,509,509,,509,509,,,',
|
394
|
+
'509,509,509,509,509,,,509,509,509,54,54,509,,54,54,,54,,,,,,,,,,,,,',
|
395
|
+
',,,54,54,,,,,,54,,54,,54,54,,54,54,54,,54,54,,,,,54,54,,,54,,,54,54',
|
396
|
+
',,,,,,54,,,,,,54,,,,54,54,,54,54,,,,54,54,54,54,54,,,54,54,54,55,55',
|
397
|
+
'54,,55,55,,55,,,,,,,,,,,,,,,,,55,55,,,,,,55,,55,,55,55,,55,55,55,,55',
|
398
|
+
'55,,,,,55,55,,,55,,,55,55,,,,,,,55,,,,,,55,,,,55,55,,55,55,,,,55,55',
|
399
|
+
'55,55,55,,,55,55,55,56,56,55,,56,56,,56,,,,,,,,,,,,,,,,,56,56,,,,,,56',
|
400
|
+
',56,,56,56,,56,56,56,,56,56,,,,,56,56,,,56,,,56,56,,,,,,,56,,,,,,56',
|
401
|
+
',,,56,56,,56,56,,,,56,56,56,56,56,,,56,56,56,516,516,56,,516,516,,516',
|
402
|
+
'516,,,,,,,,,,,,,,,,516,516,,,,,,516,,516,,516,516,,516,516,516,,516',
|
403
|
+
'516,516,516,,,516,516,,,516,,,516,516,,,,,,,516,,,,,,516,,,,516,516',
|
404
|
+
',516,516,,,,516,516,516,516,516,,,516,516,516,507,507,516,,507,507,',
|
405
|
+
'507,507,,,,,,,,,,,,,,,,507,507,,,,,,507,,507,,507,507,,507,507,507,',
|
406
|
+
'507,507,507,507,,,507,507,,,507,,,507,507,,,,,,,507,,,,,,507,,,,507',
|
407
|
+
'507,,507,507,,,,507,507,507,507,507,,,507,507,507,511,511,507,,511,511',
|
408
|
+
',511,,,,,,,,,,,,,,,,,511,511,,,,,,511,,511,,511,511,,511,511,511,,511',
|
409
|
+
'511,511,511,,,511,511,,,511,,,511,511,,,,,,,511,,,,,,511,,,,511,511',
|
410
|
+
',511,511,,,,511,511,511,511,511,,,511,511,511,488,488,511,,488,488,',
|
411
|
+
'488,,,,,,,,,,,,,,,,,488,488,,,,,,488,,488,,488,488,,488,488,488,,488',
|
412
|
+
'488,488,488,,,488,488,,,488,,,488,488,,,,,,,488,,,,,,488,,,,488,488',
|
413
|
+
',488,488,,,,488,488,488,488,488,,,488,488,488,72,72,488,,72,72,72,72',
|
414
|
+
',,,,,,,,,,,,,,,,72,72,,,,,,72,,72,,72,72,,72,72,72,,72,72,72,72,,,72',
|
415
|
+
'72,,,72,,,72,72,,,,,,,72,,,,,,72,,,,72,72,,72,72,,,,72,72,72,72,72,72',
|
416
|
+
'72,72,72,72,73,73,72,,73,73,73,73,,,,,,,,,,,,,,,,,73,73,,,,,,73,,73',
|
417
|
+
',73,73,,73,73,73,,73,73,73,73,,,73,73,,,73,,,73,73,,,,,,,73,,,,,,73',
|
418
|
+
',,,73,73,,73,73,,,,73,73,73,73,73,73,73,73,73,73,74,74,73,,74,74,,74',
|
419
|
+
'74,,,,,,,,,,,,,,,,74,74,,,,,,74,,74,,74,74,,74,74,74,,74,74,74,74,,',
|
420
|
+
'74,74,,,74,,,74,74,,,,,,,74,,,,,,74,,,,74,74,,74,74,,,,74,74,74,74,74',
|
421
|
+
'74,74,74,74,74,78,78,74,,78,78,,78,,,,,,,,,,,,,,,,,78,78,,,,,,78,,78',
|
422
|
+
',78,78,,78,78,78,,78,78,78,78,,,78,78,,,78,,,78,78,,,,,,,78,,,,,,78',
|
423
|
+
',,,78,78,,78,78,,,,78,78,78,78,78,,,78,78,78,486,486,78,,486,486,,486',
|
424
|
+
'486,,,,,,,,,,,,,,,,486,486,,,,,,486,,486,,486,486,,486,486,486,,486',
|
425
|
+
'486,486,486,,,486,486,,,486,,,486,486,,,,,,,486,,,,,,486,,,,486,486',
|
426
|
+
',486,486,,,,486,486,486,486,486,,,486,486,486,475,475,486,,475,475,',
|
427
|
+
'475,,,,,,,,,,,,,,,,,475,475,,,,,,475,,475,,475,475,,475,475,475,,475',
|
428
|
+
'475,,,,,475,475,,,475,,,475,475,,,,,,,475,,,,,,475,,,,475,475,,475,475',
|
429
|
+
',,,475,475,475,475,475,,,475,475,475,83,83,475,,83,83,,83,,,,,,,,,,',
|
430
|
+
',,,,,,83,83,,,,,,83,,83,,83,83,,83,83,83,,83,83,,,,,83,83,,,83,,,83',
|
431
|
+
'83,,,,,,,83,,,,,,83,,,,83,83,,83,83,,,,83,83,83,83,83,,,83,83,83,470',
|
432
|
+
'470,83,,470,470,,470,,,,,,,,,,,,,,,,,470,470,,,,,,470,,470,,470,470',
|
433
|
+
',470,470,470,,470,470,,,,,470,470,,,470,,,470,470,,,,,,,470,,,,,,470',
|
434
|
+
',,,470,470,,470,470,,,,470,470,470,470,470,,,470,470,470,86,86,470,',
|
435
|
+
'86,86,,86,,,,,,,,,,,,,,,,,86,86,,,,,,86,,86,,86,86,,86,86,86,,86,86',
|
436
|
+
'86,86,,,86,86,,,86,,,86,86,,,,,,,86,,,,,,86,,,,86,86,,86,86,,,,86,86',
|
437
|
+
'86,86,86,,,86,86,86,89,89,86,,89,89,,89,,,,,,,,,,,,,,,,,89,89,,,,,,89',
|
438
|
+
',89,,89,89,,89,89,89,,89,89,89,89,,,89,89,,,89,,,89,89,,,,,,,89,,,,',
|
439
|
+
',89,,,,89,89,,89,89,,,,89,89,89,89,89,,,89,89,89,90,90,89,,90,90,,90',
|
440
|
+
',,,,,,,,,,,,,,,,90,90,,,,,,90,,90,,90,90,,90,90,90,,90,90,90,90,,,90',
|
441
|
+
'90,,,90,,,90,90,,,,,,,90,,,,,,90,,,,90,90,,90,90,,,,90,90,90,90,90,',
|
442
|
+
',90,90,90,91,91,90,,91,91,,91,,,,,,,,,,,,,,,,,91,91,,,,,,91,,91,,91',
|
443
|
+
'91,,91,91,91,,91,91,91,91,,,91,91,,,91,,,91,91,,,,,,,91,,,,,,91,,,,91',
|
444
|
+
'91,,91,91,,,,91,91,91,91,91,,,91,91,91,92,92,91,,92,92,,92,,,,,,,,,',
|
445
|
+
',,,,,,,92,92,,,,,,92,,92,,92,92,,92,92,92,,92,92,92,92,,,92,92,,,92',
|
446
|
+
',,92,92,,,,,,,92,,,,,,92,,,,92,92,,92,92,,,,92,92,92,92,92,,,92,92,92',
|
447
|
+
'93,93,92,,93,93,,93,,,,,,,,,,,,,,,,,93,93,,,,,,93,,93,,93,93,,93,93',
|
448
|
+
'93,,93,93,93,93,,,93,93,,,93,,,93,93,,,,,,,93,,,,,,93,,,,93,93,,93,93',
|
449
|
+
',,,93,93,93,93,93,,,93,93,93,94,94,93,,94,94,,94,,,,,,,,,,,,,,,,,94',
|
450
|
+
'94,,,,,,94,,94,,94,94,,94,94,94,,94,94,94,94,,,94,94,,,94,,,94,94,,',
|
451
|
+
',,,,94,,,,,,94,,,,94,94,,94,94,,,,94,94,94,94,94,,,94,94,94,95,95,94',
|
452
|
+
',95,95,,95,,,,,,,,,,,,,,,,,95,95,,,,,,95,,95,,95,95,,95,95,95,,95,95',
|
453
|
+
'95,95,,,95,95,,,95,,,95,95,,,,,,,95,,,,,,95,,,,95,95,,95,95,,,,95,95',
|
454
|
+
'95,95,95,,,95,95,95,96,96,95,,96,96,,96,,,,,,,,,,,,,,,,,96,96,,,,,,96',
|
455
|
+
'96,96,96,96,96,96,96,96,96,,96,96,,,,,96,96,96,96,96,,,96,96,,,,,,,96',
|
456
|
+
',,,,96,96,,,,96,96,,96,96,,,,96,96,96,96,96,96,96,96,96,96,97,97,96',
|
457
|
+
',97,97,,97,,,,,,,,,,,,,,,,,97,97,,,,,,97,,97,,97,97,,97,97,97,,97,97',
|
458
|
+
',,,,97,97,,,97,,,97,97,,,,,,,97,,,,,,97,,,,97,97,,97,97,,,,97,97,97',
|
459
|
+
'97,97,,,97,97,97,98,98,97,,98,98,,98,,,,,,,,,,,,,,,,,98,98,,,,,,98,',
|
460
|
+
'98,,98,98,,98,98,98,,98,98,,,,,98,98,,,98,,,98,98,,,,,,,98,,,,,,98,',
|
461
|
+
',,98,98,,98,98,,,,98,98,98,98,98,,,98,98,98,99,99,98,,99,99,,99,,,,',
|
462
|
+
',,,,,,,,,,,,99,99,,,,,,99,,99,,99,99,,99,99,99,,99,99,,,,,99,99,,,99',
|
463
|
+
',,99,99,,,,,,,99,,,,,,99,,,,99,99,,99,99,,,,99,99,99,99,99,,,99,99,99',
|
464
|
+
'100,100,99,,100,100,,100,,,,,,,,,,,,,,,,,100,100,,,,,,100,,100,,100',
|
465
|
+
'100,,100,100,100,,100,100,,,,,100,100,,,100,,,100,100,,,,,,,100,,,,',
|
466
|
+
',100,,,,100,100,,100,100,,,,100,100,100,100,100,,,100,100,100,101,101',
|
467
|
+
'100,,101,101,,101,,,,,,,,,,,,,,,,,101,101,,,,,,101,,101,,101,101,,101',
|
468
|
+
'101,101,,101,101,,,,,101,101,,,101,,,101,101,,,,,,,101,,,,,,101,,,,101',
|
469
|
+
'101,,101,101,,,,101,101,101,101,101,,,101,101,101,102,102,101,,102,102',
|
470
|
+
',102,,,,,,,,,,,,,,,,,102,102,,,,,,102,,102,,102,102,,102,102,102,,102',
|
471
|
+
'102,,,,,102,102,,,102,,,102,102,,,,,,,102,,,,,,102,,,,102,102,,102,102',
|
472
|
+
',,,102,102,102,102,102,,,102,102,102,103,103,102,,103,103,,103,,,,,',
|
473
|
+
',,,,,,,,,,,103,103,,,,,,103,,103,,103,103,,103,103,103,,103,103,,,,',
|
474
|
+
'103,103,,,103,,,103,103,,,,,,,103,,,,,,103,,,,103,103,,103,103,,,,103',
|
475
|
+
'103,103,103,103,,,103,103,103,104,104,103,,104,104,,104,,,,,,,,,,,,',
|
476
|
+
',,,,104,104,,,,,,104,,104,,104,104,,104,104,104,,104,104,,,,,104,104',
|
477
|
+
',,104,,,104,104,,,,,,,104,,,,,,104,,,,104,104,,104,104,,,,104,104,104',
|
478
|
+
'104,104,,,104,104,104,105,105,104,,105,105,,105,,,,,,,,,,,,,,,,,105',
|
479
|
+
'105,,,,,,105,,105,,105,105,,105,105,105,,105,105,,,,,105,105,,,105,',
|
480
|
+
',105,105,,,,,,,105,,,,,,105,,,,105,105,,105,105,,,,105,105,105,105,105',
|
481
|
+
',,105,105,105,106,106,105,,106,106,,106,,,,,,,,,,,,,,,,,106,106,,,,',
|
482
|
+
',106,,106,,106,106,,106,106,106,,106,106,,,,,106,106,,,106,,,106,106',
|
483
|
+
',,,,,,106,,,,,,106,,,,106,106,,106,106,,,,106,106,106,106,106,,,106',
|
484
|
+
'106,106,107,107,106,,107,107,,107,,,,,,,,,,,,,,,,,107,107,,,,,,107,',
|
485
|
+
'107,,107,107,,107,107,107,,107,107,,,,,107,107,,,107,,,107,107,,,,,',
|
486
|
+
',107,,,,,,107,,,,107,107,,107,107,,,,107,107,107,107,107,,,107,107,107',
|
487
|
+
'108,108,107,,108,108,,108,,,,,,,,,,,,,,,,,108,108,,,,,,108,,108,,108',
|
431
488
|
'108,,108,108,108,,108,108,,,,,108,108,,,108,,,108,108,,,,,,,108,,,,',
|
432
|
-
',108,,,,108,108,,108,108,,,,108,108,108,108,108,
|
433
|
-
'108,
|
434
|
-
'
|
435
|
-
'
|
436
|
-
',
|
437
|
-
'
|
438
|
-
'
|
439
|
-
'
|
440
|
-
',,,
|
441
|
-
'
|
442
|
-
'
|
443
|
-
',,,
|
444
|
-
',,,
|
445
|
-
',,
|
446
|
-
'
|
447
|
-
'
|
448
|
-
',,
|
449
|
-
'
|
450
|
-
',
|
451
|
-
',,
|
452
|
-
'
|
453
|
-
'
|
454
|
-
'
|
455
|
-
'
|
456
|
-
',
|
457
|
-
'
|
458
|
-
'
|
459
|
-
'
|
460
|
-
'
|
461
|
-
'
|
462
|
-
'
|
463
|
-
',
|
464
|
-
'
|
465
|
-
',,
|
466
|
-
'
|
467
|
-
'
|
468
|
-
'
|
469
|
-
'
|
470
|
-
'
|
471
|
-
'
|
472
|
-
'
|
473
|
-
'
|
474
|
-
'
|
475
|
-
',
|
476
|
-
'
|
477
|
-
'
|
478
|
-
'
|
479
|
-
'
|
480
|
-
'
|
481
|
-
',
|
482
|
-
'
|
483
|
-
',
|
484
|
-
'
|
485
|
-
'
|
486
|
-
'
|
487
|
-
'
|
488
|
-
'
|
489
|
-
'
|
490
|
-
'
|
491
|
-
',,
|
492
|
-
'
|
493
|
-
'
|
494
|
-
'
|
495
|
-
'
|
496
|
-
',
|
497
|
-
'
|
498
|
-
'
|
499
|
-
'
|
500
|
-
'
|
501
|
-
'
|
502
|
-
'
|
503
|
-
'
|
504
|
-
'
|
505
|
-
'
|
506
|
-
',
|
507
|
-
',,
|
508
|
-
'
|
509
|
-
'
|
510
|
-
'
|
511
|
-
'
|
512
|
-
'
|
513
|
-
'
|
514
|
-
'
|
515
|
-
',,,,
|
516
|
-
'
|
517
|
-
'
|
518
|
-
'
|
519
|
-
',,,,,,,,,,,
|
520
|
-
'
|
521
|
-
'
|
522
|
-
'
|
523
|
-
'
|
524
|
-
',
|
525
|
-
'
|
526
|
-
'
|
527
|
-
'
|
528
|
-
'
|
529
|
-
'
|
530
|
-
',
|
531
|
-
'
|
532
|
-
'
|
533
|
-
',
|
534
|
-
'
|
535
|
-
'
|
536
|
-
'
|
537
|
-
'
|
538
|
-
'
|
539
|
-
'
|
540
|
-
'
|
541
|
-
'
|
542
|
-
'
|
543
|
-
'
|
544
|
-
'
|
545
|
-
'
|
546
|
-
'
|
547
|
-
'
|
548
|
-
'
|
549
|
-
'
|
550
|
-
'
|
551
|
-
'
|
552
|
-
',,
|
553
|
-
'
|
554
|
-
'
|
555
|
-
',,
|
556
|
-
'
|
557
|
-
'
|
558
|
-
'
|
559
|
-
',,,,,
|
560
|
-
'
|
561
|
-
'
|
562
|
-
'
|
563
|
-
'
|
564
|
-
'
|
565
|
-
'
|
566
|
-
'
|
567
|
-
'
|
568
|
-
',,,,,,
|
569
|
-
'
|
570
|
-
'
|
571
|
-
'
|
572
|
-
'
|
573
|
-
'
|
574
|
-
'
|
575
|
-
',
|
576
|
-
'
|
577
|
-
'
|
578
|
-
'
|
579
|
-
'
|
580
|
-
',,,,
|
581
|
-
'
|
582
|
-
'
|
583
|
-
',
|
584
|
-
'
|
585
|
-
'
|
586
|
-
',,,
|
587
|
-
'
|
588
|
-
'
|
589
|
-
'
|
590
|
-
',,
|
591
|
-
'
|
592
|
-
'
|
593
|
-
'
|
594
|
-
',
|
595
|
-
'
|
596
|
-
'
|
597
|
-
'
|
598
|
-
'
|
599
|
-
'
|
600
|
-
'
|
601
|
-
'
|
602
|
-
'
|
603
|
-
'
|
604
|
-
'
|
605
|
-
'
|
606
|
-
'
|
607
|
-
'
|
608
|
-
'
|
609
|
-
'
|
610
|
-
'
|
611
|
-
'
|
612
|
-
'
|
613
|
-
'
|
614
|
-
'
|
615
|
-
'
|
616
|
-
'
|
617
|
-
'
|
618
|
-
'
|
619
|
-
'
|
620
|
-
'
|
621
|
-
'
|
622
|
-
'
|
623
|
-
'
|
624
|
-
',,
|
625
|
-
'
|
626
|
-
'
|
627
|
-
'
|
628
|
-
'
|
629
|
-
'
|
630
|
-
'
|
631
|
-
',,,,
|
632
|
-
',162
|
633
|
-
'
|
634
|
-
'
|
635
|
-
'
|
636
|
-
'
|
637
|
-
'
|
638
|
-
'
|
639
|
-
'
|
640
|
-
'
|
641
|
-
'
|
642
|
-
',
|
643
|
-
'
|
644
|
-
',
|
645
|
-
',
|
646
|
-
'
|
647
|
-
|
648
|
-
'255,,255,256,254,,255,,255,,,,,253,,,256,256,,256,,,,256,,256,,255,',
|
649
|
-
',254,,,,,255,255,255,255,255,255,,255,255,256,,,,,255,,,256,256,256',
|
650
|
-
'256,256,256,257,256,256,,,,,,256,,,,257,257,257,,257,255,257,,257,,257',
|
651
|
-
'257,257,257,,,,,,,,,256,,,,,,,257,,,,,258,,,257,257,257,257,257,257',
|
652
|
-
',257,257,258,258,258,,258,257,258,,258,,258,258,258,258,,,,,,,,,,,,',
|
653
|
-
',,,258,,257,,,258,,,258,258,258,258,258,258,259,258,258,,,259,,,258',
|
654
|
-
',,,259,259,259,,259,,259,,259,,259,259,259,259,,,,,,,,,258,,,,,,,259',
|
655
|
-
',,,259,259,,,259,259,259,259,259,259,,259,259,263,263,,,,259,263,,,',
|
656
|
-
',,263,263,263,,263,,263,,263,,263,263,263,263,,,,,,259,,,,,,,,,,263',
|
657
|
-
',,,263,263,,,263,263,263,263,263,263,270,263,263,,,,,,263,,,,270,270',
|
658
|
-
'270,,270,,270,,270,,270,270,270,270,,,,,,,,,263,,,,,,,270,,,,270,270',
|
659
|
-
',,270,270,270,270,270,270,275,270,270,,,,,,270,,,,275,275,275,275,275',
|
660
|
-
',275,,275,,275,275,275,275,,,,,,,,,270,,,,,,,275,,,,275,275,,,275,275',
|
661
|
-
'275,275,275,275,,275,275,,376,376,376,376,275,376,376,376,,376,,376',
|
662
|
-
'376,,,,,,,376,376,376,,,,376,,,,,275,,,,,,,376,376,,,,,,,,,,,,376,376',
|
663
|
-
'376,376,376,376,376,376,411,411,411,411,,411,411,411,,411,,411,411,',
|
664
|
-
',,,,,411,411,411,,,,411,,,,,,,,,,,,411,411,,,,,,,,,,,,411,411,411,411',
|
665
|
-
'411,411,411,411,346,346,346,346,,346,346,346,,346,,346,346,,,,,,,346',
|
666
|
-
'346,346,,,,346,,,,,,,,,,,,346,346,,,,,,,,,,,,346,346,346,346,346,346',
|
667
|
-
'346,346,344,344,344,344,,344,344,344,,344,,344,344,,,,,,,344,344,344',
|
668
|
-
',,,344,,,,,,,,,,,,344,344,,,,,,,,,,,,344,344,344,344,344,344,344,344',
|
669
|
-
'384,384,384,384,,384,384,384,,384,,384,384,,,,,,,384,384,384,,,,384',
|
670
|
-
',,,,,,,,,,,384,384,,,,,,,,,,,,384,384,384,384,384,384,384,384,269,269',
|
671
|
-
'269,269,,269,269,269,,269,,269,269,,,,,,,269,269,269,,,,269,,,,,,,,',
|
672
|
-
',,,269,269,,,,,,,,,,,,269,269,269,269,269,269,269,269' ]
|
673
|
-
racc_action_check = arr = ::Array.new(10090, nil)
|
489
|
+
',108,,,,108,108,,108,108,,,,108,108,108,108,108,,,108,108,108,109,109',
|
490
|
+
'108,,109,109,,109,,,,,,,,,,,,,,,,,109,109,,,,,,109,,109,,109,109,,109',
|
491
|
+
'109,109,,109,109,,,,,109,109,,,109,,,109,109,,,,,,,109,,,,,,109,,,,109',
|
492
|
+
'109,,109,109,,,,109,109,109,109,109,,,109,109,109,110,110,109,,110,110',
|
493
|
+
',110,,,,,,,,,,,,,,,,,110,110,,,,,,110,,110,,110,110,,110,110,110,,110',
|
494
|
+
'110,,,,,110,110,,,110,,,110,110,,,,,,,110,,,,,,110,,,,110,110,,110,110',
|
495
|
+
',,,110,110,110,110,110,,,110,110,110,111,111,110,,111,111,,111,,,,,',
|
496
|
+
',,,,,,,,,,,111,111,,,,,,111,,111,,111,111,,111,111,111,,111,111,,,,',
|
497
|
+
'111,111,,,111,,,111,111,,,,,,,111,,,,,,111,,,,111,111,,111,111,,,,111',
|
498
|
+
'111,111,111,111,,,111,111,111,112,112,111,,112,112,,112,,,,,,,,,,,,',
|
499
|
+
',,,,112,112,,,,,,112,,112,,112,112,,112,112,112,,112,112,,,,,112,112',
|
500
|
+
',,112,,,112,112,,,,,,,112,,,,,,112,,,,112,112,,112,112,,,,112,112,112',
|
501
|
+
'112,112,,,112,112,112,113,113,112,,113,113,,113,,,,,,,,,,,,,,,,,113',
|
502
|
+
'113,,,,,,113,,113,,113,113,,113,113,113,,113,113,,,,,113,113,,,113,',
|
503
|
+
',113,113,,,,,,,113,,,,,,113,,,,113,113,,113,113,,,,113,113,113,113,113',
|
504
|
+
',,113,113,113,114,114,113,,114,114,,114,,,,,,,,,,,,,,,,,114,114,,,,',
|
505
|
+
',114,,114,,114,114,,114,114,114,,114,114,,,,,114,114,,,114,,,114,114',
|
506
|
+
',,,,,,114,,,,,,114,,,,114,114,,114,114,,,,114,114,114,114,114,,,114',
|
507
|
+
'114,114,115,115,114,,115,115,,115,,,,,,,,,,,,,,,,,115,115,,,,,,115,',
|
508
|
+
'115,,115,115,,115,115,115,,115,115,,,,,115,115,,,115,,,115,115,,,,,',
|
509
|
+
',115,,,,,,115,,,115,115,115,,115,115,,,,115,115,115,115,115,,,115,115',
|
510
|
+
'115,116,116,115,,116,116,,116,,,,,,,,,,,,,,,,,116,116,,,,,,116,,116',
|
511
|
+
',116,116,,116,116,116,,116,116,116,116,,,116,116,,,116,,,116,116,,,',
|
512
|
+
',,,116,,,,,,116,,,,116,116,,116,116,,,,116,116,116,116,116,116,116,116',
|
513
|
+
'116,116,120,120,116,,120,120,,120,,,,,,,,,,,,,,,,,120,120,,,,,,120,',
|
514
|
+
'120,,120,120,,120,120,120,,120,120,,,,,120,120,,,120,,,120,120,,,,,',
|
515
|
+
',120,,,,,,120,,,,120,120,,120,120,,,,120,120,120,120,120,,,120,120,120',
|
516
|
+
'121,121,120,,121,121,,121,,,,,,,,,,,,,,,,,121,121,,,,,,121,,121,,121',
|
517
|
+
'121,,121,121,121,,121,121,,,,,121,121,,,121,,,121,121,,,,,,,121,,,,',
|
518
|
+
',121,,,,121,121,,121,121,,,,121,121,121,121,121,,,121,121,121,464,464',
|
519
|
+
'121,,464,464,,464,,,,,,,,,,,,,,,,,464,464,,,,,,464,,464,,464,464,,464',
|
520
|
+
'464,464,,464,464,464,464,,,464,464,,,464,,,464,464,,,,,,,464,,,,,,464',
|
521
|
+
',,,464,464,,464,464,,,,464,464,464,464,464,464,464,464,464,464,461,461',
|
522
|
+
'464,,461,461,,461,,,,,,,,,,,,,,,,,461,461,,,,,,461,,461,,461,461,,461',
|
523
|
+
'461,461,,461,461,461,461,,,461,461,,,461,,,461,461,,,,,,,461,,,,,,461',
|
524
|
+
',,,461,461,,461,461,,,,461,461,461,461,461,,,461,461,461,124,124,461',
|
525
|
+
',124,124,,124,,,,,,,,,,,,,,,,,124,124,,,,,,124,,124,,124,124,,124,124',
|
526
|
+
'124,,124,124,,,,,124,124,,,124,,,124,124,,,,,,,124,,,,,,124,,,,124,124',
|
527
|
+
',124,124,,,,124,124,124,124,124,,,124,124,124,10,10,124,,10,10,,10,',
|
528
|
+
',,,,,,,,,,,,,,,10,10,,,,,,10,,10,,10,10,,10,10,10,,10,10,10,10,,,10',
|
529
|
+
'10,,,10,,,10,10,,,,,,,10,,,,,,10,,,,10,10,,10,10,,,,10,10,10,10,10,',
|
530
|
+
',10,10,10,458,458,10,,458,458,,458,,,,,,,,,,,,,,,,,458,458,,,,,,458',
|
531
|
+
',458,,458,458,,458,458,458,,458,458,458,458,,,458,458,,,458,,,458,458',
|
532
|
+
',,,,,,458,,,,,,458,,,,458,458,,458,458,,,,458,458,458,458,458,458,458',
|
533
|
+
'458,458,458,450,450,458,,450,450,,450,,,,,,,,,,,,,,,,,450,450,,,,,,450',
|
534
|
+
',450,,450,450,,450,450,450,,450,450,450,450,,,450,450,,,450,,,450,450',
|
535
|
+
',,,,,,450,,,,,,450,,,,450,450,,450,450,,,,450,450,450,450,450,,,450',
|
536
|
+
'450,450,443,443,450,,443,443,,443,,,,,,,,,,,,,,,,,443,443,,,,,,443,',
|
537
|
+
'443,,443,443,,443,443,443,,443,443,,,,,443,443,,,443,,,443,443,,,,,',
|
538
|
+
',443,,,,,,443,,,,443,443,,443,443,,,,443,443,443,443,443,,,443,443,443',
|
539
|
+
'426,426,443,,426,426,,426,,,,,,,,,,,,,,,,,426,426,,,,,,426,,426,,426',
|
540
|
+
'426,,426,426,426,,426,426,426,426,,,426,426,,,426,,,426,426,,,,,,,426',
|
541
|
+
',,,,,426,,,,426,426,,426,426,,,,426,426,426,426,426,426,426,426,426',
|
542
|
+
'426,161,161,426,,161,161,,161,,,,,,,,,,,,,,,,,161,161,161,,,,,161,,161',
|
543
|
+
',161,161,,161,161,161,,161,161,161,161,,,161,161,,,161,,,161,161,,,',
|
544
|
+
',,,161,,,,,,161,,,,161,161,,161,161,,,,161,161,161,161,161,161,161,161',
|
545
|
+
'161,161,11,11,161,,11,11,,11,,,,,,,,,,,,,,,,,11,11,,,,,,11,,11,,11,11',
|
546
|
+
',11,11,11,,11,11,11,11,,,11,11,,,11,,,11,11,,,,,,,11,,,,,,11,,,,11,11',
|
547
|
+
',11,11,,,,11,11,11,11,11,,,11,11,11,522,522,11,,522,522,,522,,,,,,,',
|
548
|
+
',,,,,,,,,522,522,,,,,,522,,522,,522,522,,522,522,522,,522,522,,,,,522',
|
549
|
+
'522,,,522,,,522,522,,,,,,,522,,,,,,522,,,,522,522,,522,522,,,,522,522',
|
550
|
+
'522,522,522,,,522,522,522,170,170,522,,170,170,,170,,,,,,,,,,,,,,,,',
|
551
|
+
'170,170,,,,,,170,,170,,170,170,,170,170,170,,170,170,170,170,,,170,170',
|
552
|
+
',,170,,,170,170,,,,,,,170,,,,,,170,,,,170,170,,170,170,,,,170,170,170',
|
553
|
+
'170,170,170,170,170,170,170,171,171,170,,171,171,,171,171,,,,,,,,,,',
|
554
|
+
',,,,,171,171,,,,,,171,,171,,171,171,,171,171,171,,171,171,171,171,,',
|
555
|
+
'171,171,,,171,,,171,171,,,,,,,171,,,,,,171,,,,171,171,,171,171,,,,171',
|
556
|
+
'171,171,171,171,,,171,171,171,416,416,171,,416,416,,416,,,,,,,,,,,,',
|
557
|
+
',,,,416,416,,,,,,416,,416,,416,416,,416,416,416,,416,416,416,416,,,416',
|
558
|
+
'416,,,416,,,416,416,,,,,,,416,,,,,,416,,,,416,416,,416,416,,,,416,416',
|
559
|
+
'416,416,416,,,416,416,416,17,17,416,,17,17,,17,,,,,,,,,,,,,,,,,17,17',
|
560
|
+
',,,,,17,,17,,17,17,,17,17,17,,17,17,,,,,17,17,,,17,,,17,17,,,,,,,17',
|
561
|
+
',,,,,17,,,,17,17,,17,17,,,,17,17,17,17,17,,,17,17,17,414,414,17,,414',
|
562
|
+
'414,,414,,,,,,,,,,,,,,,,,414,414,,,,,,414,,414,,414,414,,414,414,414',
|
563
|
+
',414,414,414,414,,,414,414,,,414,,,414,414,,,,,,,414,,,,,,414,,,,414',
|
564
|
+
'414,,414,414,,,,414,414,414,414,414,,,414,414,414,413,413,414,,413,413',
|
565
|
+
',413,,,,,,,,,,,,,,,,,413,413,,,,,,413,,413,,413,413,,413,413,413,,413',
|
566
|
+
'413,413,413,,,413,413,,,413,,,413,413,,,,,,,413,,,,,,413,,,,413,413',
|
567
|
+
',413,413,,,,413,413,413,413,413,,,413,413,413,411,411,413,,411,411,',
|
568
|
+
'411,411,,,,,,,,,,,,,,,,411,411,,,,,,411,,411,,411,411,,411,411,411,',
|
569
|
+
'411,411,,,,,411,411,,,411,,,411,411,,,,,,,411,,,,,,411,,,,411,411,,411',
|
570
|
+
'411,,,,411,411,411,411,411,,,411,411,411,0,0,411,,0,0,,0,,,,,,,,,,,',
|
571
|
+
',,,,,0,0,,,,,,0,,0,,0,0,,0,0,0,,0,0,0,0,,,0,0,,,0,,,0,0,,,,,,,0,,,,',
|
572
|
+
',0,,,,0,0,,0,0,0,,,0,0,0,0,0,,,0,0,0,201,201,0,,201,201,,201,,,,,,,',
|
573
|
+
',,,,,,,,,201,201,,,,,,201,,201,,201,201,,201,201,201,,201,201,201,201',
|
574
|
+
',,201,201,,,201,,,201,201,,,,,,,201,,,,,,201,,,,201,201,,201,201,,,',
|
575
|
+
'201,201,201,201,201,,,201,201,201,204,204,201,,204,204,,204,204,,,,',
|
576
|
+
',,,,,,,,,,,204,204,,,,,,204,,204,,204,204,,204,204,204,,204,204,204',
|
577
|
+
'204,,,204,204,,,204,,,204,204,,,,,,,204,,,,,,204,,,,204,204,,204,204',
|
578
|
+
',,,204,204,204,204,204,204,204,204,204,204,403,403,204,,403,403,,403',
|
579
|
+
',,,,,,,,,,,,,,,,403,403,,,,,,403,,403,,403,403,,403,403,403,,403,403',
|
580
|
+
'403,403,,,403,403,,,403,,,403,403,,,,,,,403,,,,,,403,,,,403,403,,403',
|
581
|
+
'403,,,,403,403,403,403,403,403,403,403,403,403,400,400,403,,400,400',
|
582
|
+
',400,,,,,,,,,,,,,,,,,400,400,,,,,,400,,400,,400,400,,400,400,400,,400',
|
583
|
+
'400,,,,,400,400,,,400,,,400,400,,,,,,,400,,,,,,400,,,,400,400,,400,400',
|
584
|
+
',,,400,400,400,400,400,,,400,400,400,217,217,400,,217,217,,217,,,217',
|
585
|
+
',,,,,,,,,,,,,217,217,,,,,,217,,217,,217,217,,217,217,217,,217,217,,',
|
586
|
+
',,217,217,,,217,,,217,217,,,,,,,217,,,,,,217,,,,217,217,,217,217,,,',
|
587
|
+
'217,217,217,217,217,,,217,217,217,222,222,217,,222,222,,222,,,,,,,,',
|
588
|
+
',,,,,,,,222,222,,,,,,222,,222,,222,222,,222,222,222,,222,222,,,,,222',
|
589
|
+
'222,,,222,,,222,222,,,,,,,222,,,,,,222,,,,222,222,,222,222,,,,222,222',
|
590
|
+
'222,222,222,,,222,222,222,223,223,222,,223,223,,223,,,,,,,,,,,,,,,,',
|
591
|
+
'223,223,,,,,,223,,223,,223,223,,223,223,223,,223,223,,,,,223,223,,,223',
|
592
|
+
',,223,223,,,,,,,223,,,,,,223,,,,223,223,,223,223,,,,223,223,223,223',
|
593
|
+
'223,,,223,223,223,224,224,223,,224,224,,224,,,,,,,,,,,,,,,,,224,224',
|
594
|
+
',,,,,224,,224,,224,224,,224,224,224,,224,224,,,,,224,224,,,224,,,224',
|
595
|
+
'224,,,,,,,224,,,,,,224,,,,224,224,,224,224,,,,224,224,224,224,224,,',
|
596
|
+
'224,224,224,396,396,224,,396,396,,396,396,,,,,,,,,,,,,,,,396,396,,,',
|
597
|
+
',,396,,396,,396,396,,396,396,396,,396,396,396,396,,,396,396,,,396,,',
|
598
|
+
'396,396,,,,,,,396,,,,,,396,,,,396,396,,396,396,,,,396,396,396,396,396',
|
599
|
+
',,396,396,396,265,265,396,,265,265,,265,,,,,,,,,,,,,,,,,265,265,,,,',
|
600
|
+
',265,,265,,265,265,,265,265,265,,265,265,,,,,265,265,,,265,,,265,265',
|
601
|
+
',,,,,,265,,,,,,265,,,,265,265,,265,265,,,,265,265,265,265,265,,,265',
|
602
|
+
'265,265,379,379,265,,379,379,,379,,,,,,,,,,,,,,,,,379,379,,,,,,379,',
|
603
|
+
'379,,379,379,,379,379,379,,379,379,,,,,379,379,,,379,,,379,379,,,,,',
|
604
|
+
',379,,,,,,379,,,,379,379,,379,379,,,,379,379,379,379,379,,,379,379,379',
|
605
|
+
'358,358,379,,358,358,,358,,,,,,,,,,,,,,,,,358,358,,,,,,358,,358,,358',
|
606
|
+
'358,,358,358,358,,358,358,358,358,,,358,358,,,358,,,358,358,,,,,,,358',
|
607
|
+
',,,,,358,,,,358,358,,358,358,,,,358,358,358,358,358,358,358,358,358',
|
608
|
+
'358,287,287,358,,287,287,,287,,,,,,,,,,,,,,,,,287,287,,,,,,287,,287',
|
609
|
+
',287,287,,287,287,287,,287,287,287,287,,,287,287,,,287,,,287,287,,,',
|
610
|
+
',,,287,,,,,,287,,,,287,287,,287,287,,,,287,287,287,287,287,287,287,287',
|
611
|
+
'287,287,354,354,287,,354,354,,354,,,,,,,,,,,,,,,,,354,354,,,,,,354,',
|
612
|
+
'354,,354,354,,354,354,354,,354,354,,,,,354,354,,,354,,,354,354,,,,,',
|
613
|
+
',354,,,,,,354,,,,354,354,,354,354,,,,354,354,354,354,354,,,354,354,354',
|
614
|
+
'290,290,354,,290,290,,290,,,,,,,,,,,,,,,,,290,290,,,,,,290,,290,,290',
|
615
|
+
'290,,290,290,290,,290,290,290,290,,,290,290,,,290,,,290,290,,,,,,,290',
|
616
|
+
',,,,,290,,,,290,290,,290,290,,,,290,290,290,290,290,290,290,290,290',
|
617
|
+
'290,291,291,290,,291,291,,291,,,,,,,,,,,,,,,,,291,291,,,,,,291,,291',
|
618
|
+
',291,291,,291,291,291,,291,291,291,291,,,291,291,,,291,,,291,291,,,',
|
619
|
+
',,,291,,,,,,291,,,,291,291,,291,291,,,,291,291,291,291,291,291,291,291',
|
620
|
+
'291,291,292,292,291,,292,292,,292,,,,,,,,,,,,,,,,,292,292,,,,,,292,',
|
621
|
+
'292,,292,292,,292,292,292,,292,292,292,292,,,292,292,,,292,,,292,292',
|
622
|
+
',,,,,,292,,,,,,292,,,,292,292,,292,292,,,,292,292,292,292,292,,,292',
|
623
|
+
'292,292,353,353,292,,353,353,,353,,,,,,,,,,,,,,,,,353,353,,,,,,353,',
|
624
|
+
'353,,353,353,,353,353,353,,353,353,,,,,353,353,,,353,,,353,353,,,,,',
|
625
|
+
',353,,,,,,353,,,,353,353,,353,353,,,,353,353,353,353,353,,,353,353,353',
|
626
|
+
'352,352,353,,352,352,,352,,,,,,,,,,,,,,,,,352,352,,,,,,352,,352,,352',
|
627
|
+
'352,,352,352,352,,352,352,,,,,352,352,,,352,,,352,352,,,,,,,352,,,,',
|
628
|
+
',352,,,,352,352,,352,352,,,,352,352,352,352,352,,,352,352,352,351,351',
|
629
|
+
'352,,351,351,,351,,,,,,,,,,,,,,,,,351,351,,,,,,351,,351,,351,351,,351',
|
630
|
+
'351,351,,351,351,,,,,351,351,,,351,,,351,351,,,,,,,351,,,,,,351,,,,351',
|
631
|
+
'351,,351,351,,,,351,351,351,351,351,,,351,351,351,310,310,351,,310,310',
|
632
|
+
',310,310,,,,,,,,,,,,,,,,310,310,,,,,,310,,310,,310,310,,310,310,310',
|
633
|
+
',310,310,310,310,,,310,310,,,310,,,310,310,,,,,,,310,,,,,,310,,,,310',
|
634
|
+
'310,,310,310,,,,310,310,310,310,310,,,310,310,310,311,311,310,,311,311',
|
635
|
+
',311,311,,,,,,,,,,,,,,,,311,311,,,,,,311,,311,,311,311,,311,311,311',
|
636
|
+
',311,311,311,311,,,311,311,,,311,,,311,311,,,,,,,311,,,,,,311,,,,311',
|
637
|
+
'311,,311,311,,,,311,311,311,311,311,,,311,311,311,312,312,311,,312,312',
|
638
|
+
',312,,,,,,,,,,,,,,,,,312,312,,,,,,312,,312,,312,312,,312,312,312,,312',
|
639
|
+
'312,,,,,312,312,,,312,,,312,312,,,,,,,312,,,,,,312,,,,312,312,,312,312',
|
640
|
+
',,,312,312,312,312,312,,,312,312,312,331,331,312,,331,331,,331,331,',
|
641
|
+
',,,,,,,,,,,,,,331,331,,,,,,331,,331,,331,331,,331,331,331,,331,331,331',
|
642
|
+
'331,,,331,331,,,331,,,331,331,,,,,,,331,,,,,,331,,,,331,331,,331,331',
|
643
|
+
',,,331,331,331,331,331,331,331,331,331,331,328,328,331,,328,328,,328',
|
644
|
+
',,,,,,,,,,,,,,,,328,328,,,,,,328,,328,,328,328,,328,328,328,,328,328',
|
645
|
+
'328,328,,,328,328,,,328,,,328,328,63,63,,,63,,328,,,,,,328,,,,328,328',
|
646
|
+
',328,328,,,,328,328,328,328,328,328,328,328,328,328,203,,328,,,,63,',
|
647
|
+
',63,,,203,203,203,,203,,203,,203,,203,203,203,203,,,,63,421,421,,,421',
|
648
|
+
',,,,63,63,203,,,,203,203,,,203,203,203,203,203,203,,203,203,,,,,,203',
|
649
|
+
'278,,,,232,232,421,,232,421,203,203,278,278,278,278,278,,278,,278,,278',
|
650
|
+
'278,278,278,203,,,421,,,,,,,,,,421,421,278,,,232,278,278,232,409,278',
|
651
|
+
'278,278,278,278,278,,278,278,,,409,409,409,278,409,,409,232,409,,409',
|
652
|
+
'409,409,409,,,,232,232,,,,,,,,,,,409,278,,,409,409,,,409,409,409,409',
|
653
|
+
'409,409,,409,409,165,,165,,,409,,,,,,,165,165,165,,165,255,165,,165',
|
654
|
+
',165,165,165,165,,,,,,255,409,255,,,,255,321,321,,165,321,,,165,165',
|
655
|
+
',,165,165,165,165,165,165,,165,165,255,,,,,165,,,255,255,255,255,255',
|
656
|
+
'255,,255,255,439,,,321,,255,321,,,,,,439,439,439,165,439,,439,,439,',
|
657
|
+
'439,439,439,439,321,,,,,,255,,,,321,321,,,,439,,,,439,439,,440,439,439',
|
658
|
+
'439,439,439,439,,439,439,,,440,440,440,439,440,248,440,,440,,440,440',
|
659
|
+
'440,440,,,,,,248,,248,,,,248,,,,440,439,,,440,440,,,440,440,440,440',
|
660
|
+
'440,440,,440,440,248,,,,,440,,,,,248,248,,438,,248,248,,,,,,248,,,438',
|
661
|
+
'438,438,,438,256,438,440,438,,438,438,438,438,,,,,256,256,,256,,,248',
|
662
|
+
'256,,256,,438,,,,438,438,,,438,438,438,438,438,438,,438,438,256,,,253',
|
663
|
+
',438,,,256,256,256,256,256,256,,256,256,253,,253,257,,256,253,,,,,,',
|
664
|
+
',,438,257,257,,257,,,,257,,257,,253,,,,247,256,,,253,253,253,253,,,',
|
665
|
+
'253,253,257,247,,247,,253,,247,257,257,257,257,257,257,,257,257,,,,',
|
666
|
+
',257,,,,,,247,,,,253,,,,,,247,247,441,,,247,247,,,,,257,247,,441,441',
|
667
|
+
'441,,441,,441,,441,,441,441,441,441,,,,,,,,,,,,247,,,,441,,,,441,441',
|
668
|
+
',258,441,441,441,441,441,441,,441,441,,,,258,258,441,258,,,,258,,258',
|
669
|
+
',,,,,,,,,,,,,,,,,,258,441,,,,9,,,258,258,258,258,258,258,,258,258,9',
|
670
|
+
'9,9,,9,258,9,,9,,9,9,9,9,,,,,,,,,,,,,,,,9,,,258,9,9,,259,9,9,9,9,9,9',
|
671
|
+
',9,9,,,,259,259,9,259,,,,259,,259,,,,,,,,,,,,,,,,,,,259,9,,,,260,,,259',
|
672
|
+
'259,259,259,259,259,,259,259,260,260,260,,260,259,260,,260,,260,260',
|
673
|
+
'260,260,,,,,,,,,,,,,,,,260,,,259,,261,,,260,260,260,260,260,260,,260',
|
674
|
+
'260,261,261,261,,261,260,261,,261,,261,261,261,261,,,,,,,,,,,,,,,,261',
|
675
|
+
',,260,,261,,,261,261,261,261,261,261,262,261,261,,,262,,,261,,,,262',
|
676
|
+
'262,262,,262,,262,,262,,262,262,262,262,,,,,,,,,,261,,,,,,262,,,,262',
|
677
|
+
'262,,,262,262,262,262,262,262,,262,262,266,266,,,,262,266,,,,,,266,266',
|
678
|
+
'266,,266,,266,,266,,266,266,266,266,,,,,,,262,,,,,,,,,266,,,,266,266',
|
679
|
+
',467,266,266,266,266,266,266,,266,266,,,467,467,467,266,467,,467,,467',
|
680
|
+
',467,467,467,467,,,,,,,,,,,,,,,,467,266,,,467,467,,273,467,467,467,467',
|
681
|
+
'467,467,,467,467,,,273,273,273,467,273,,273,,273,,273,273,273,273,,',
|
682
|
+
',,,,,,,,,,,,,273,467,,,273,273,,,273,273,273,273,273,273,215,273,273',
|
683
|
+
',,,,,273,,,,215,215,215,215,215,252,215,,215,,215,215,215,215,,,,,,252',
|
684
|
+
',252,,273,,252,,,,215,,,,215,215,,,215,215,215,215,215,215,,215,215',
|
685
|
+
'252,,,254,,215,,,252,252,252,252,,,,252,252,254,,254,,,252,254,,,,,',
|
686
|
+
',,,215,,,,,,,,,,,,254,,,,,252,,,254,254,254,254,254,254,,254,254,162',
|
687
|
+
',162,,,254,,,,,,,162,162,162,,162,,162,,162,,162,162,162,162,,,,,,,254',
|
688
|
+
',,,,,,,,162,,,,162,162,,,162,162,162,162,162,162,,162,162,164,,164,',
|
689
|
+
',162,,,,,,,164,164,164,,164,,164,,164,,164,164,164,164,,,,,,,162,,,',
|
690
|
+
',,,,,164,,,,164,164,,510,164,164,164,164,164,164,,164,164,,,510,510',
|
691
|
+
'510,164,510,,510,,510,,510,510,510,510,,,,,,,,,,,,,,,,510,164,,,510',
|
692
|
+
'510,,,510,510,510,510,510,510,,510,510,,350,350,350,350,510,350,350',
|
693
|
+
'350,,350,,350,350,,,,,,,350,350,350,,,,350,,,,,,510,,,,,,350,350,,,',
|
694
|
+
',,,,,,,,350,350,350,350,350,350,350,350,272,272,272,272,,272,272,272',
|
695
|
+
',272,,272,272,,,,,,,272,272,272,,,,272,,,,,,,,,,,,272,272,,,,,,,,,,',
|
696
|
+
',272,272,272,272,272,272,272,272,388,388,388,388,,388,388,388,,388,',
|
697
|
+
'388,388,,,,,,,388,388,388,,,,388,,,,,,,,,,,,388,388,,,,,,,,,,,,388,388',
|
698
|
+
'388,388,388,388,388,388,415,415,415,415,,415,415,415,,415,,415,415,',
|
699
|
+
',,,,,415,415,415,,,,415,,,,,,,,,,,,415,415,,,,,,,,,,,,415,415,415,415',
|
700
|
+
'415,415,415,415,348,348,348,348,,348,348,348,,348,,348,348,,,,,,,348',
|
701
|
+
'348,348,,,,348,,,,,,,,,,,,348,348,,,,,,,,,,,,348,348,348,348,348,348',
|
702
|
+
'348,348,380,380,380,380,,380,380,380,,380,,380,380,,,,,,,380,380,380',
|
703
|
+
',,,380,,,,,,,,,,,,380,380,,,,,,,,,,,,380,380,380,380,380,380,380,380' ]
|
704
|
+
racc_action_check = arr = ::Array.new(10662, nil)
|
674
705
|
idx = 0
|
675
706
|
clist.each do |str|
|
676
707
|
str.split(',', -1).each do |i|
|
@@ -680,570 +711,561 @@ clist = [
|
|
680
711
|
end
|
681
712
|
|
682
713
|
racc_action_pointer = [
|
683
|
-
|
684
|
-
|
685
|
-
|
714
|
+
6641, 580, nil, nil, 544, 561, nil, -8, 563, 9619,
|
715
|
+
5276, 5822, 202, nil, nil, nil, 180, 6277, 180, 271,
|
716
|
+
362, 453, nil, nil, nil, nil, nil, nil, nil, nil,
|
686
717
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
687
|
-
nil, nil, nil, nil, nil, nil, nil, nil,
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
nil,
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
nil, nil,
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
nil,
|
708
|
-
|
709
|
-
nil, nil,
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
nil,
|
714
|
-
|
715
|
-
|
716
|
-
nil, nil,
|
717
|
-
nil, nil,
|
718
|
-
|
719
|
-
nil,
|
720
|
-
nil, nil, nil, nil,
|
721
|
-
|
722
|
-
|
723
|
-
nil,
|
724
|
-
|
725
|
-
nil,
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
nil, nil,
|
730
|
-
|
731
|
-
|
732
|
-
nil, nil,
|
733
|
-
nil,
|
734
|
-
|
735
|
-
|
736
|
-
nil,
|
718
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, 196,
|
719
|
+
635, 92, 497, 541, 817, 908, 999, 28, 244, 199,
|
720
|
+
251, 540, 557, 8973, 293, 214, 230, 252, 543, nil,
|
721
|
+
nil, nil, 1454, 1545, 1636, nil, nil, nil, 1727, nil,
|
722
|
+
481, 469, nil, 2000, nil, 525, 2182, 510, -2, 2273,
|
723
|
+
2364, 2455, 2546, 2637, 2728, 2819, 2910, 3001, 3092, 3183,
|
724
|
+
3274, 3365, 3456, 3547, 3638, 3729, 3820, 3911, 4002, 4093,
|
725
|
+
4184, 4275, 4366, 4457, 4548, 4639, 4730, nil, 25, 513,
|
726
|
+
4821, 4912, 511, 508, 5185, 326, nil, nil, nil, nil,
|
727
|
+
nil, nil, 384, nil, nil, 444, 426, 90, 303, 488,
|
728
|
+
480, 489, nil, nil, 474, 413, 75, 153, 475, 160,
|
729
|
+
471, nil, nil, nil, nil, 468, nil, 32, nil, 411,
|
730
|
+
424, 5731, 10142, nil, 10200, 9172, 333, 346, 241, 367,
|
731
|
+
6004, 6095, 453, nil, 442, nil, nil, nil, nil, nil,
|
732
|
+
nil, nil, nil, 398, 4, 445, nil, nil, 438, nil,
|
733
|
+
431, nil, 139, nil, nil, nil, nil, 257, nil, nil,
|
734
|
+
226, 6732, -35, 9002, 6823, nil, 430, nil, nil, nil,
|
735
|
+
nil, 433, 401, 392, 389, 10023, 383, 7096, 7, 2,
|
736
|
+
-9, 73, 7187, 7278, 7369, nil, nil, 9, 342, 373,
|
737
|
+
106, 374, 9075, 379, 17, 10, nil, nil, nil, nil,
|
738
|
+
nil, nil, nil, nil, 212, 5, 80, 9472, 9312, 130,
|
739
|
+
269, 178, 10040, 9427, 10084, 9189, 9383, 9444, 9573, 9667,
|
740
|
+
9713, 9759, 9814, nil, nil, 7551, 9872, 354, nil, nil,
|
741
|
+
nil, nil, 10339, 9968, 288, nil, 296, 264, 9066, nil,
|
742
|
+
266, nil, 477, 484, 240, nil, nil, 7824, 195, nil,
|
743
|
+
8006, 8097, 8188, 166, 205, 162, nil, nil, 196, nil,
|
744
|
+
nil, nil, nil, nil, 174, 108, -31, nil, 92, nil,
|
745
|
+
8552, 8643, 8734, 112, 101, 77, 42, 34, 10, nil,
|
746
|
+
558, 9215, -25, 7, 9, nil, nil, 86, 8916, 106,
|
747
|
+
nil, 8825, nil, nil, nil, nil, 89, nil, nil, nil,
|
748
|
+
nil, 157, nil, nil, nil, nil, 165, 178, 10513, 186,
|
749
|
+
10281, 8461, 8370, 8279, 7915, 214, nil, 228, 7733, 241,
|
750
|
+
nil, 269, nil, nil, nil, nil, nil, nil, nil, nil,
|
751
|
+
nil, nil, nil, nil, nil, nil, nil, nil, 290, 7642,
|
752
|
+
10571, 305, nil, 332, nil, 310, nil, 314, 10397, nil,
|
753
|
+
273, nil, 184, 366, 369, nil, 7460, 380, 319, 381,
|
754
|
+
7005, nil, nil, 6914, nil, 395, 135, 404, 396, 9114,
|
755
|
+
119, 6550, nil, 6459, 6368, 10455, 6186, 441, nil, 461,
|
756
|
+
nil, 9037, nil, nil, 464, nil, 5640, nil, nil, nil,
|
757
|
+
nil, nil, nil, 405, 354, 468, nil, nil, 9366, 9247,
|
758
|
+
9295, 9525, 479, 5549, nil, nil, 492, nil, nil, 493,
|
759
|
+
5458, nil, nil, nil, 481, 485, 502, nil, 5367, nil,
|
760
|
+
nil, 5094, 509, nil, 5003, nil, nil, 9920, 70, nil,
|
761
|
+
2091, 517, 496, nil, 524, 1909, 540, nil, nil, 542,
|
762
|
+
nil, nil, 544, 542, 546, 548, 1818, nil, 1363, 547,
|
763
|
+
nil, nil, 551, 519, nil, nil, nil, nil, 553, nil,
|
764
|
+
nil, 554, 555, nil, 150, nil, nil, 1181, nil, 726,
|
765
|
+
10248, 1272, nil, nil, 563, nil, 1090, 565, nil, 566,
|
766
|
+
570, nil, 5913, nil, nil, nil, nil, 573, nil, 582,
|
767
|
+
nil, 583, nil, nil, nil, 586, nil, nil, nil, nil,
|
768
|
+
435, nil, nil, nil, nil, nil ]
|
737
769
|
|
738
770
|
racc_action_default = [
|
739
|
-
-3, -
|
740
|
-
-
|
741
|
-
-
|
771
|
+
-3, -301, -1, -2, -4, -5, -8, -10, -18, -23,
|
772
|
+
-301, -301, -193, -35, -36, -37, -38, -301, -301, -301,
|
773
|
+
-301, -301, -70, -71, -72, -73, -74, -75, -76, -77,
|
742
774
|
-78, -79, -80, -81, -82, -83, -84, -85, -86, -87,
|
743
|
-
-88, -89, -90, -91, -92, -93, -94, -95, -96,
|
744
|
-
-
|
745
|
-
-
|
746
|
-
-
|
747
|
-
-
|
748
|
-
-
|
749
|
-
-
|
750
|
-
-
|
751
|
-
-24, -25, -
|
752
|
-
-
|
753
|
-
-15, -16, -
|
754
|
-
-
|
755
|
-
-
|
756
|
-
-
|
757
|
-
-
|
758
|
-
-
|
759
|
-
-
|
760
|
-
-21, -22, -
|
761
|
-
|
762
|
-
-
|
763
|
-
-
|
764
|
-
-
|
765
|
-
-
|
766
|
-
-
|
767
|
-
-
|
768
|
-
-
|
769
|
-
-202, -
|
770
|
-
-
|
771
|
-
-
|
772
|
-
-
|
773
|
-
-
|
774
|
-
-
|
775
|
-
-
|
776
|
-
-
|
777
|
-
-
|
778
|
-
|
779
|
-
-
|
780
|
-
-
|
781
|
-
-
|
782
|
-
-
|
783
|
-
|
784
|
-
-
|
785
|
-
-
|
786
|
-
-
|
787
|
-
-
|
788
|
-
-
|
789
|
-
-
|
790
|
-
|
791
|
-
-
|
792
|
-
-
|
775
|
+
-88, -89, -90, -91, -92, -93, -94, -95, -96, -97,
|
776
|
+
-301, -301, -104, -108, -301, -301, -301, -301, -301, -301,
|
777
|
+
-301, -301, -301, -301, -301, -249, -272, -248, -301, -220,
|
778
|
+
-221, -222, -301, -301, -301, -245, -246, -247, -301, -251,
|
779
|
+
-301, -264, -267, -301, -273, -301, -301, -7, -301, -301,
|
780
|
+
-301, -301, -301, -301, -301, -301, -145, -301, -301, -301,
|
781
|
+
-301, -301, -301, -301, -301, -301, -301, -301, -301, -301,
|
782
|
+
-301, -301, -301, -301, -301, -301, -301, -102, -301, -140,
|
783
|
+
-300, -300, -24, -25, -301, -300, -163, -190, -191, -192,
|
784
|
+
-193, -194, -301, -157, -158, -49, -193, -50, -57, -301,
|
785
|
+
-301, -14, -15, -16, -274, -99, -239, -241, -244, -240,
|
786
|
+
-301, -236, -242, -243, -103, -210, -217, -272, -105, -300,
|
787
|
+
-301, -301, -301, -116, -301, -301, -300, -300, -301, -300,
|
788
|
+
-301, -301, -274, -174, -176, -177, -178, -179, -180, -182,
|
789
|
+
-183, -248, -249, -300, -301, -274, -224, -233, -234, -237,
|
790
|
+
-274, -226, -301, -229, -230, -235, -250, -301, -255, -258,
|
791
|
+
-301, -262, -301, -301, -301, 546, -6, -9, -11, -12,
|
792
|
+
-13, -19, -20, -21, -22, -301, -274, -301, -95, -96,
|
793
|
+
-97, -292, -285, -291, -279, -146, -149, -301, -282, -296,
|
794
|
+
-193, -299, -288, -294, -221, -222, -278, -283, -284, -286,
|
795
|
+
-287, -289, -297, -298, -39, -40, -41, -42, -43, -44,
|
796
|
+
-45, -46, -47, -48, -51, -52, -53, -54, -55, -56,
|
797
|
+
-58, -59, -301, -60, -134, -301, -23, -274, -64, -67,
|
798
|
+
-109, -110, -145, -144, -301, -143, -301, -276, -301, -30,
|
799
|
+
-300, -195, -301, -301, -301, -61, -62, -275, -301, -101,
|
800
|
+
-301, -301, -262, -301, -301, -301, -189, -114, -274, -200,
|
801
|
+
-202, -203, -204, -205, -207, -301, -301, -272, -301, -107,
|
802
|
+
-301, -301, -301, -301, -301, -301, -301, -274, -301, -171,
|
803
|
+
-300, -275, -301, -300, -214, -215, -216, -301, -275, -301,
|
804
|
+
-227, -301, -252, -253, -254, -256, -301, -259, -260, -261,
|
805
|
+
-263, -274, -265, -268, -270, -271, -8, -301, -145, -301,
|
806
|
+
-275, -301, -301, -301, -301, -274, -136, -301, -275, -274,
|
807
|
+
-148, -301, -279, -280, -281, -282, -285, -288, -290, -291,
|
808
|
+
-292, -293, -294, -295, -296, -299, -141, -142, -301, -277,
|
809
|
+
-145, -301, -166, -301, -196, -274, -197, -274, -145, -17,
|
810
|
+
-98, -232, -301, -301, -301, -111, -301, -187, -301, -275,
|
811
|
+
-301, -208, -209, -301, -106, -301, -119, -301, -125, -68,
|
812
|
+
-301, -301, -129, -300, -300, -145, -300, -301, -170, -301,
|
813
|
+
-184, -301, -175, -181, -301, -212, -301, -223, -238, -225,
|
814
|
+
-228, -231, -257, -301, -301, -274, -28, -147, -152, -150,
|
815
|
+
-151, -138, -301, -275, -63, -65, -301, -27, -31, -274,
|
816
|
+
-300, -167, -168, -169, -301, -301, -274, -100, -301, -211,
|
817
|
+
-218, -262, -301, -113, -301, -115, -201, -206, -119, -118,
|
818
|
+
-301, -301, -125, -124, -301, -301, -301, -128, -130, -301,
|
819
|
+
-164, -165, -301, -274, -301, -301, -301, -185, -300, -274,
|
820
|
+
-266, -269, -301, -32, -135, -137, -139, -29, -301, -198,
|
821
|
+
-199, -301, -301, -112, -301, -117, -120, -301, -123, -301,
|
822
|
+
-69, -300, -153, -154, -301, -159, -301, -301, -173, -301,
|
823
|
+
-301, -26, -33, -162, -156, -219, -188, -301, -122, -301,
|
824
|
+
-127, -301, -132, -133, -155, -301, -161, -172, -186, -213,
|
825
|
+
-276, -121, -126, -131, -160, -34 ]
|
793
826
|
|
794
827
|
racc_goto_table = [
|
795
|
-
2,
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
nil,
|
816
|
-
|
817
|
-
|
818
|
-
nil, nil, nil, nil,
|
819
|
-
nil, nil, nil, nil,
|
820
|
-
nil,
|
821
|
-
nil,
|
822
|
-
nil, nil, nil, nil,
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
nil,
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
nil, nil, nil, nil, nil, nil,
|
833
|
-
nil,
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
nil,
|
838
|
-
nil,
|
839
|
-
nil, nil,
|
840
|
-
|
841
|
-
nil,
|
842
|
-
nil,
|
843
|
-
|
844
|
-
nil, nil,
|
845
|
-
nil,
|
846
|
-
|
847
|
-
nil, nil, nil, nil, nil,
|
848
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
849
|
-
nil, nil, nil, nil, 487, nil, nil, nil, nil, nil,
|
850
|
-
nil, nil, nil, nil, nil, nil, nil, nil, 491, nil,
|
851
|
-
nil, nil, nil, nil, nil, 495, nil, nil, nil, nil,
|
852
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
853
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
854
|
-
nil, nil, 508, nil, nil, nil, nil, 513 ]
|
828
|
+
2, 126, 277, 177, 267, 135, 137, 138, 175, 264,
|
829
|
+
139, 140, 158, 275, 275, 155, 156, 194, 343, 378,
|
830
|
+
187, 187, 325, 339, 294, 87, 196, 298, 445, 188,
|
831
|
+
188, 422, 144, 412, 122, 123, 185, 190, 216, 132,
|
832
|
+
141, 337, 162, 164, 165, 3, 166, 167, 492, 126,
|
833
|
+
448, 473, 296, 183, 274, 276, 263, 326, 469, 269,
|
834
|
+
395, 506, 141, 141, 195, 411, 531, 355, 198, 341,
|
835
|
+
437, 203, 169, 381, 451, 419, 423, 466, 207, 208,
|
836
|
+
209, 210, 168, 402, 215, 244, 245, 246, 247, 248,
|
837
|
+
249, 250, 251, 252, 253, 254, 255, 256, 257, 258,
|
838
|
+
259, 260, 261, 262, 266, 289, 195, 206, 273, 273,
|
839
|
+
155, 156, 278, 401, 393, 508, 211, 212, 213, 214,
|
840
|
+
505, 284, 391, 280, 155, 126, 428, 1, 445, 338,
|
841
|
+
335, 487, 478, 336, 334, 199, 167, 201, 183, nil,
|
842
|
+
nil, nil, nil, 308, nil, nil, nil, 194, 324, 385,
|
843
|
+
387, 141, 317, 479, 482, nil, 484, 315, nil, 356,
|
844
|
+
141, nil, 425, nil, 313, 314, 155, 316, nil, nil,
|
845
|
+
nil, 318, 177, 382, nil, nil, nil, 175, nil, 392,
|
846
|
+
288, 323, nil, nil, nil, 155, 156, nil, 424, nil,
|
847
|
+
498, nil, nil, nil, 346, nil, nil, nil, nil, nil,
|
848
|
+
nil, 340, nil, nil, 347, 137, nil, nil, 320, nil,
|
849
|
+
162, 164, 165, 420, 359, nil, 296, 166, 167, 126,
|
850
|
+
nil, 327, 183, nil, nil, nil, 329, nil, 519, nil,
|
851
|
+
nil, nil, nil, nil, 269, 389, nil, nil, nil, nil,
|
852
|
+
nil, nil, nil, nil, nil, nil, 155, 155, nil, 491,
|
853
|
+
nil, nil, 349, 262, nil, nil, nil, nil, nil, 397,
|
854
|
+
nil, 177, nil, nil, nil, nil, 175, nil, nil, nil,
|
855
|
+
nil, nil, nil, nil, 431, nil, 187, 141, nil, 266,
|
856
|
+
195, 195, 545, 502, 432, 188, nil, nil, nil, nil,
|
857
|
+
435, nil, 340, nil, nil, nil, nil, nil, nil, nil,
|
858
|
+
409, 269, nil, 357, nil, nil, 481, 481, nil, 481,
|
859
|
+
405, 407, nil, nil, 489, nil, nil, nil, 141, nil,
|
860
|
+
nil, 195, 449, nil, nil, nil, 198, nil, nil, nil,
|
861
|
+
456, nil, nil, nil, 398, nil, nil, 495, nil, 438,
|
862
|
+
439, 440, 441, 481, nil, nil, 266, nil, 195, nil,
|
863
|
+
457, 389, 504, 417, nil, nil, nil, 483, nil, nil,
|
864
|
+
nil, 177, nil, 155, nil, nil, 175, 278, nil, 269,
|
865
|
+
nil, nil, 452, nil, nil, nil, nil, 433, nil, nil,
|
866
|
+
nil, 481, nil, nil, nil, nil, nil, nil, 467, nil,
|
867
|
+
nil, 442, nil, 141, nil, 446, 462, nil, nil, 409,
|
868
|
+
540, 269, nil, nil, 532, nil, nil, 269, nil, nil,
|
869
|
+
nil, nil, nil, nil, 266, nil, 195, nil, nil, nil,
|
870
|
+
nil, 454, nil, 455, nil, nil, nil, nil, nil, nil,
|
871
|
+
nil, 262, nil, nil, nil, nil, nil, nil, nil, nil,
|
872
|
+
nil, nil, nil, nil, nil, nil, 266, nil, 195, nil,
|
873
|
+
nil, nil, 266, nil, 195, nil, nil, nil, 162, nil,
|
874
|
+
nil, 340, nil, 510, nil, nil, nil, nil, nil, nil,
|
875
|
+
nil, 493, nil, nil, nil, nil, nil, nil, nil, nil,
|
876
|
+
nil, nil, nil, nil, nil, 497, 517, nil, nil, nil,
|
877
|
+
nil, nil, 501, nil, nil, nil, nil, nil, nil, nil,
|
878
|
+
nil, nil, nil, nil, nil, nil, nil, 527, nil, 529,
|
879
|
+
278, 533, nil, nil, nil, nil, 535, nil, nil, 514,
|
880
|
+
nil, nil, nil, nil, nil, 520 ]
|
855
881
|
|
856
882
|
racc_goto_check = [
|
857
|
-
2,
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
6,
|
862
|
-
18,
|
863
|
-
|
864
|
-
|
865
|
-
6,
|
883
|
+
2, 72, 15, 47, 24, 12, 12, 12, 48, 65,
|
884
|
+
6, 6, 51, 64, 64, 49, 89, 9, 108, 16,
|
885
|
+
8, 8, 46, 91, 55, 5, 101, 57, 25, 96,
|
886
|
+
96, 81, 10, 62, 11, 11, 92, 92, 13, 75,
|
887
|
+
6, 97, 12, 12, 12, 3, 72, 72, 14, 72,
|
888
|
+
18, 60, 64, 72, 68, 68, 23, 45, 59, 9,
|
889
|
+
56, 58, 6, 6, 6, 61, 63, 66, 6, 57,
|
890
|
+
69, 12, 76, 77, 78, 80, 83, 84, 6, 6,
|
891
|
+
6, 6, 75, 85, 12, 12, 12, 12, 12, 12,
|
866
892
|
12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
|
867
|
-
12, 12, 12, 12,
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
6,
|
873
|
-
|
874
|
-
|
875
|
-
nil, nil, nil,
|
876
|
-
|
877
|
-
nil, 2, nil, 12, nil, nil,
|
878
|
-
12,
|
879
|
-
|
880
|
-
nil, nil, nil, nil,
|
881
|
-
nil, nil, nil, nil,
|
882
|
-
nil, 12, nil, nil, nil, nil,
|
883
|
-
nil, nil, nil,
|
884
|
-
nil, nil, nil, nil,
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
nil,
|
890
|
-
13, nil, nil, nil, nil, nil,
|
891
|
-
|
892
|
-
24, nil, nil, nil,
|
893
|
-
|
894
|
-
nil, nil, nil, nil, nil, nil,
|
895
|
-
nil, nil, nil,
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
nil,
|
900
|
-
nil,
|
893
|
+
12, 12, 12, 12, 12, 51, 6, 5, 12, 12,
|
894
|
+
49, 89, 12, 87, 91, 60, 11, 11, 11, 11,
|
895
|
+
59, 72, 94, 73, 49, 72, 95, 1, 25, 98,
|
896
|
+
102, 81, 62, 103, 105, 106, 72, 107, 72, nil,
|
897
|
+
nil, nil, nil, 10, nil, nil, nil, 9, 49, 57,
|
898
|
+
57, 6, 10, 74, 74, nil, 74, 72, nil, 65,
|
899
|
+
6, nil, 46, nil, 73, 73, 49, 73, nil, nil,
|
900
|
+
nil, 2, 47, 64, nil, nil, nil, 48, nil, 24,
|
901
|
+
17, 73, nil, nil, nil, 49, 89, nil, 55, nil,
|
902
|
+
74, nil, nil, nil, 6, nil, nil, nil, nil, nil,
|
903
|
+
nil, 2, nil, nil, 2, 12, nil, nil, 17, nil,
|
904
|
+
12, 12, 12, 64, 13, nil, 64, 72, 72, 72,
|
905
|
+
nil, 17, 72, nil, nil, nil, 17, nil, 74, nil,
|
906
|
+
nil, nil, nil, nil, 9, 8, nil, nil, nil, nil,
|
907
|
+
nil, nil, nil, nil, nil, nil, 49, 49, nil, 108,
|
908
|
+
nil, nil, 17, 12, nil, nil, nil, nil, nil, 49,
|
909
|
+
nil, 47, nil, nil, nil, nil, 48, nil, nil, nil,
|
910
|
+
nil, nil, nil, nil, 9, nil, 8, 6, nil, 12,
|
911
|
+
6, 6, 16, 91, 101, 96, nil, nil, nil, nil,
|
912
|
+
13, nil, 2, nil, nil, nil, nil, nil, nil, nil,
|
913
|
+
12, 9, nil, 17, nil, nil, 64, 64, nil, 64,
|
914
|
+
2, 2, nil, nil, 24, nil, nil, nil, 6, nil,
|
915
|
+
nil, 6, 13, nil, nil, nil, 6, nil, nil, nil,
|
916
|
+
13, nil, nil, nil, 17, nil, nil, 65, nil, 12,
|
917
|
+
12, 12, 12, 64, nil, nil, 12, nil, 6, nil,
|
918
|
+
51, 8, 24, 17, nil, nil, nil, 13, nil, nil,
|
919
|
+
nil, 47, nil, 49, nil, nil, 48, 12, nil, 9,
|
920
|
+
nil, nil, 72, nil, nil, nil, nil, 17, nil, nil,
|
921
|
+
nil, 64, nil, nil, nil, nil, nil, nil, 12, nil,
|
922
|
+
nil, 17, nil, 6, nil, 17, 2, nil, nil, 12,
|
923
|
+
15, 9, nil, nil, 64, nil, nil, 9, nil, nil,
|
924
|
+
nil, nil, nil, nil, 12, nil, 6, nil, nil, nil,
|
925
|
+
nil, 17, nil, 17, nil, nil, nil, nil, nil, nil,
|
926
|
+
nil, 12, nil, nil, nil, nil, nil, nil, nil, nil,
|
927
|
+
nil, nil, nil, nil, nil, nil, 12, nil, 6, nil,
|
901
928
|
nil, nil, 12, nil, 6, nil, nil, nil, 12, nil,
|
902
|
-
|
903
|
-
nil, nil, nil, nil, nil,
|
904
|
-
nil, nil, nil, nil, nil,
|
905
|
-
|
906
|
-
nil, nil, nil, nil, nil,
|
907
|
-
|
908
|
-
nil, nil, nil, nil, nil,
|
909
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
910
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
911
|
-
nil, nil, nil, nil, 17, nil, nil, nil, nil, nil,
|
912
|
-
nil, nil, nil, nil, nil, nil, nil, nil, 17, nil,
|
913
|
-
nil, nil, nil, nil, nil, 17, nil, nil, nil, nil,
|
914
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
915
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
916
|
-
nil, nil, 17, nil, nil, nil, nil, 17 ]
|
929
|
+
nil, 2, nil, 12, nil, nil, nil, nil, nil, nil,
|
930
|
+
nil, 17, nil, nil, nil, nil, nil, nil, nil, nil,
|
931
|
+
nil, nil, nil, nil, nil, 17, 2, nil, nil, nil,
|
932
|
+
nil, nil, 17, nil, nil, nil, nil, nil, nil, nil,
|
933
|
+
nil, nil, nil, nil, nil, nil, nil, 2, nil, 2,
|
934
|
+
12, 2, nil, nil, nil, nil, 2, nil, nil, 17,
|
935
|
+
nil, nil, nil, nil, nil, 17 ]
|
917
936
|
|
918
937
|
racc_goto_pointer = [
|
919
|
-
nil,
|
920
|
-
-
|
921
|
-
nil, nil, nil, -
|
938
|
+
nil, 127, 0, 45, nil, 21, -10, nil, -52, -57,
|
939
|
+
-18, 24, -12, -58, -387, -122, -258, 36, -329, nil,
|
940
|
+
nil, nil, nil, -59, -112, -330, nil, nil, nil, nil,
|
922
941
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
923
|
-
nil, nil, nil, nil, -
|
924
|
-
-
|
925
|
-
-
|
926
|
-
nil,
|
927
|
-
-
|
928
|
-
-
|
929
|
-
-
|
942
|
+
nil, nil, nil, nil, nil, -127, -162, -60, -55, -36,
|
943
|
+
nil, -40, nil, nil, nil, -135, -234, -133, -409, -348,
|
944
|
+
-357, -247, -279, -445, -107, -106, -198, nil, -66, -280,
|
945
|
+
nil, nil, -11, -2, -260, 23, 12, -207, -309, nil,
|
946
|
+
-245, -290, nil, -246, -322, -223, nil, -192, nil, -35,
|
947
|
+
nil, -178, -36, nil, -168, -202, -43, -159, -71, nil,
|
948
|
+
nil, -52, -67, -64, nil, -63, 55, 56, -185 ]
|
930
949
|
|
931
950
|
racc_goto_default = [
|
932
|
-
nil, nil,
|
933
|
-
nil, 8, 9, nil, nil, nil, nil, nil,
|
934
|
-
14, 15, 16, nil, nil,
|
951
|
+
nil, nil, 480, nil, 4, 5, 6, 7, 143, 142,
|
952
|
+
nil, 8, 9, nil, nil, nil, nil, nil, 279, 13,
|
953
|
+
14, 15, 16, nil, nil, 268, 410, 22, 23, 24,
|
935
954
|
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
936
|
-
35, 36, 37, 38, 39, 40, 41, 42, 43,
|
937
|
-
nil,
|
938
|
-
nil, nil, nil,
|
939
|
-
|
940
|
-
|
941
|
-
nil, nil,
|
942
|
-
nil, nil, nil,
|
955
|
+
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
|
956
|
+
50, nil, 52, 53, 159, nil, nil, nil, 163, nil,
|
957
|
+
nil, nil, nil, nil, 281, nil, nil, 119, nil, 225,
|
958
|
+
227, 226, 59, nil, nil, nil, 125, nil, nil, 172,
|
959
|
+
nil, 173, 174, 178, 299, 300, 301, 302, 303, 306,
|
960
|
+
68, nil, nil, 192, 150, 189, 151, 75, 76, 77,
|
961
|
+
78, nil, nil, nil, 197, nil, nil, nil, nil ]
|
943
962
|
|
944
963
|
racc_reduce_table = [
|
945
964
|
0, 0, :racc_error,
|
946
|
-
1,
|
947
|
-
1,
|
948
|
-
0,
|
949
|
-
1,
|
950
|
-
1,
|
951
|
-
3,
|
952
|
-
2,
|
953
|
-
1,
|
954
|
-
3,
|
955
|
-
1, 103, :_reduce_none,
|
956
|
-
3, 103, :_reduce_11,
|
957
|
-
3, 103, :_reduce_12,
|
958
|
-
3, 103, :_reduce_13,
|
959
|
-
1, 105, :_reduce_none,
|
960
|
-
1, 105, :_reduce_15,
|
961
|
-
1, 107, :_reduce_16,
|
962
|
-
3, 107, :_reduce_17,
|
965
|
+
1, 99, :_reduce_1,
|
966
|
+
1, 99, :_reduce_2,
|
967
|
+
0, 99, :_reduce_3,
|
968
|
+
1, 100, :_reduce_4,
|
969
|
+
1, 102, :_reduce_5,
|
970
|
+
3, 102, :_reduce_6,
|
971
|
+
2, 102, :_reduce_7,
|
972
|
+
1, 103, :_reduce_8,
|
973
|
+
3, 103, :_reduce_9,
|
963
974
|
1, 104, :_reduce_none,
|
964
|
-
3, 104, :
|
965
|
-
3, 104, :
|
966
|
-
3, 104, :
|
967
|
-
|
968
|
-
1,
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
3, 112, :_reduce_31,
|
977
|
-
1, 111, :_reduce_32,
|
978
|
-
2, 111, :_reduce_33,
|
979
|
-
4, 111, :_reduce_34,
|
980
|
-
1, 109, :_reduce_none,
|
981
|
-
1, 109, :_reduce_none,
|
982
|
-
1, 109, :_reduce_none,
|
975
|
+
3, 104, :_reduce_11,
|
976
|
+
3, 104, :_reduce_12,
|
977
|
+
3, 104, :_reduce_13,
|
978
|
+
1, 106, :_reduce_none,
|
979
|
+
1, 106, :_reduce_15,
|
980
|
+
1, 108, :_reduce_16,
|
981
|
+
3, 108, :_reduce_17,
|
982
|
+
1, 105, :_reduce_none,
|
983
|
+
3, 105, :_reduce_19,
|
984
|
+
3, 105, :_reduce_20,
|
985
|
+
3, 105, :_reduce_21,
|
986
|
+
3, 105, :_reduce_22,
|
983
987
|
1, 109, :_reduce_none,
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
3,
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
3,
|
1000
|
-
3,
|
1001
|
-
3,
|
1002
|
-
|
1003
|
-
3,
|
1004
|
-
3,
|
1005
|
-
3,
|
1006
|
-
3,
|
1007
|
-
3,
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
3,
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
1,
|
1025
|
-
|
1026
|
-
1,
|
1027
|
-
1,
|
1028
|
-
1,
|
1029
|
-
|
1030
|
-
1,
|
1031
|
-
1,
|
1032
|
-
1,
|
1033
|
-
1,
|
1034
|
-
1,
|
1035
|
-
1,
|
1036
|
-
1,
|
1037
|
-
1,
|
1038
|
-
1,
|
1039
|
-
1,
|
1040
|
-
1,
|
1041
|
-
1,
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
1,
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
1,
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
3,
|
1072
|
-
|
1073
|
-
|
1074
|
-
2,
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
3,
|
1083
|
-
6,
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
988
|
+
2, 109, :_reduce_24,
|
989
|
+
2, 109, :_reduce_25,
|
990
|
+
7, 109, :_reduce_26,
|
991
|
+
5, 109, :_reduce_27,
|
992
|
+
5, 109, :_reduce_28,
|
993
|
+
4, 116, :_reduce_29,
|
994
|
+
1, 113, :_reduce_30,
|
995
|
+
3, 113, :_reduce_31,
|
996
|
+
1, 112, :_reduce_32,
|
997
|
+
2, 112, :_reduce_33,
|
998
|
+
4, 112, :_reduce_34,
|
999
|
+
1, 110, :_reduce_none,
|
1000
|
+
1, 110, :_reduce_none,
|
1001
|
+
1, 110, :_reduce_none,
|
1002
|
+
1, 110, :_reduce_none,
|
1003
|
+
3, 110, :_reduce_39,
|
1004
|
+
3, 110, :_reduce_40,
|
1005
|
+
3, 110, :_reduce_41,
|
1006
|
+
3, 110, :_reduce_42,
|
1007
|
+
3, 110, :_reduce_43,
|
1008
|
+
3, 110, :_reduce_44,
|
1009
|
+
3, 110, :_reduce_45,
|
1010
|
+
3, 110, :_reduce_46,
|
1011
|
+
3, 110, :_reduce_47,
|
1012
|
+
3, 110, :_reduce_48,
|
1013
|
+
2, 110, :_reduce_49,
|
1014
|
+
2, 110, :_reduce_50,
|
1015
|
+
3, 110, :_reduce_51,
|
1016
|
+
3, 110, :_reduce_52,
|
1017
|
+
3, 110, :_reduce_53,
|
1018
|
+
3, 110, :_reduce_54,
|
1019
|
+
3, 110, :_reduce_55,
|
1020
|
+
3, 110, :_reduce_56,
|
1021
|
+
2, 110, :_reduce_57,
|
1022
|
+
3, 110, :_reduce_58,
|
1023
|
+
3, 110, :_reduce_59,
|
1024
|
+
3, 110, :_reduce_60,
|
1025
|
+
3, 110, :_reduce_61,
|
1026
|
+
3, 110, :_reduce_62,
|
1027
|
+
5, 120, :_reduce_63,
|
1028
|
+
1, 122, :_reduce_64,
|
1029
|
+
3, 122, :_reduce_65,
|
1030
|
+
1, 123, :_reduce_none,
|
1031
|
+
1, 123, :_reduce_67,
|
1032
|
+
1, 124, :_reduce_68,
|
1033
|
+
3, 124, :_reduce_69,
|
1034
|
+
1, 117, :_reduce_none,
|
1035
|
+
1, 117, :_reduce_none,
|
1036
|
+
1, 117, :_reduce_none,
|
1037
|
+
1, 117, :_reduce_none,
|
1038
|
+
1, 117, :_reduce_none,
|
1039
|
+
1, 117, :_reduce_none,
|
1040
|
+
1, 117, :_reduce_none,
|
1041
|
+
1, 117, :_reduce_none,
|
1042
|
+
1, 117, :_reduce_none,
|
1043
|
+
1, 117, :_reduce_none,
|
1044
|
+
1, 117, :_reduce_none,
|
1045
|
+
1, 117, :_reduce_none,
|
1046
|
+
1, 117, :_reduce_none,
|
1047
|
+
1, 117, :_reduce_none,
|
1048
|
+
1, 117, :_reduce_none,
|
1049
|
+
1, 117, :_reduce_none,
|
1050
|
+
1, 117, :_reduce_none,
|
1051
|
+
1, 117, :_reduce_none,
|
1052
|
+
1, 117, :_reduce_none,
|
1053
|
+
1, 117, :_reduce_none,
|
1054
|
+
1, 117, :_reduce_none,
|
1055
|
+
1, 117, :_reduce_none,
|
1056
|
+
1, 117, :_reduce_none,
|
1057
|
+
1, 117, :_reduce_93,
|
1058
|
+
1, 117, :_reduce_94,
|
1059
|
+
1, 117, :_reduce_95,
|
1060
|
+
1, 117, :_reduce_96,
|
1061
|
+
1, 117, :_reduce_97,
|
1062
|
+
4, 119, :_reduce_98,
|
1063
|
+
2, 119, :_reduce_99,
|
1064
|
+
5, 119, :_reduce_100,
|
1065
|
+
3, 119, :_reduce_101,
|
1066
|
+
2, 148, :_reduce_102,
|
1067
|
+
2, 148, :_reduce_103,
|
1068
|
+
1, 126, :_reduce_104,
|
1069
|
+
2, 126, :_reduce_105,
|
1070
|
+
4, 150, :_reduce_106,
|
1071
|
+
3, 150, :_reduce_107,
|
1072
|
+
1, 150, :_reduce_108,
|
1073
|
+
3, 151, :_reduce_109,
|
1074
|
+
3, 151, :_reduce_110,
|
1075
|
+
3, 149, :_reduce_111,
|
1076
|
+
3, 154, :_reduce_112,
|
1077
|
+
2, 154, :_reduce_113,
|
1078
|
+
2, 152, :_reduce_114,
|
1079
|
+
4, 152, :_reduce_115,
|
1080
|
+
2, 129, :_reduce_116,
|
1081
|
+
5, 156, :_reduce_117,
|
1082
|
+
4, 156, :_reduce_118,
|
1083
|
+
0, 157, :_reduce_none,
|
1084
|
+
2, 157, :_reduce_120,
|
1085
|
+
4, 157, :_reduce_121,
|
1086
|
+
3, 157, :_reduce_122,
|
1087
|
+
6, 130, :_reduce_123,
|
1088
|
+
5, 130, :_reduce_124,
|
1089
|
+
0, 158, :_reduce_none,
|
1090
|
+
4, 158, :_reduce_126,
|
1091
|
+
3, 158, :_reduce_127,
|
1092
|
+
5, 128, :_reduce_128,
|
1093
|
+
1, 159, :_reduce_129,
|
1094
|
+
2, 159, :_reduce_130,
|
1095
|
+
5, 160, :_reduce_131,
|
1096
|
+
1, 161, :_reduce_none,
|
1097
|
+
1, 161, :_reduce_none,
|
1098
|
+
1, 121, :_reduce_none,
|
1099
|
+
4, 121, :_reduce_135,
|
1100
|
+
1, 164, :_reduce_136,
|
1101
|
+
3, 164, :_reduce_137,
|
1102
|
+
3, 163, :_reduce_138,
|
1103
|
+
6, 127, :_reduce_139,
|
1104
|
+
2, 127, :_reduce_140,
|
1105
|
+
3, 165, :_reduce_141,
|
1106
|
+
3, 165, :_reduce_142,
|
1092
1107
|
1, 166, :_reduce_none,
|
1093
1108
|
1, 166, :_reduce_none,
|
1094
|
-
|
1095
|
-
|
1096
|
-
3,
|
1097
|
-
|
1109
|
+
0, 111, :_reduce_145,
|
1110
|
+
1, 111, :_reduce_146,
|
1111
|
+
3, 111, :_reduce_147,
|
1112
|
+
1, 168, :_reduce_none,
|
1113
|
+
1, 168, :_reduce_none,
|
1114
|
+
3, 167, :_reduce_150,
|
1115
|
+
3, 167, :_reduce_151,
|
1116
|
+
3, 167, :_reduce_152,
|
1098
1117
|
6, 131, :_reduce_153,
|
1099
|
-
|
1100
|
-
7,
|
1101
|
-
|
1102
|
-
1, 171, :_reduce_none,
|
1103
|
-
6, 133, :_reduce_158,
|
1104
|
-
7, 132, :_reduce_159,
|
1105
|
-
1, 172, :_reduce_160,
|
1106
|
-
1, 170, :_reduce_none,
|
1107
|
-
1, 170, :_reduce_none,
|
1118
|
+
6, 132, :_reduce_154,
|
1119
|
+
7, 118, :_reduce_155,
|
1120
|
+
7, 118, :_reduce_156,
|
1108
1121
|
1, 173, :_reduce_none,
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
1,
|
1117
|
-
|
1118
|
-
|
1119
|
-
1,
|
1120
|
-
1,
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1122
|
+
1, 173, :_reduce_none,
|
1123
|
+
6, 134, :_reduce_159,
|
1124
|
+
8, 135, :_reduce_160,
|
1125
|
+
7, 135, :_reduce_161,
|
1126
|
+
7, 133, :_reduce_162,
|
1127
|
+
1, 174, :_reduce_163,
|
1128
|
+
1, 172, :_reduce_none,
|
1129
|
+
1, 172, :_reduce_none,
|
1130
|
+
1, 175, :_reduce_none,
|
1131
|
+
2, 175, :_reduce_167,
|
1132
|
+
1, 176, :_reduce_none,
|
1133
|
+
1, 176, :_reduce_none,
|
1134
|
+
4, 137, :_reduce_170,
|
1135
|
+
3, 137, :_reduce_171,
|
1136
|
+
7, 136, :_reduce_172,
|
1137
|
+
6, 136, :_reduce_173,
|
1138
|
+
1, 177, :_reduce_174,
|
1139
|
+
3, 177, :_reduce_175,
|
1124
1140
|
1, 179, :_reduce_none,
|
1125
1141
|
1, 179, :_reduce_none,
|
1126
|
-
1,
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1130
|
-
5, 151, :_reduce_185,
|
1131
|
-
1, 151, :_reduce_none,
|
1132
|
-
1, 168, :_reduce_none,
|
1133
|
-
1, 168, :_reduce_none,
|
1134
|
-
1, 168, :_reduce_none,
|
1135
|
-
1, 168, :_reduce_190,
|
1136
|
-
1, 168, :_reduce_191,
|
1137
|
-
1, 169, :_reduce_192,
|
1138
|
-
2, 169, :_reduce_193,
|
1139
|
-
2, 169, :_reduce_194,
|
1140
|
-
4, 169, :_reduce_195,
|
1141
|
-
4, 169, :_reduce_196,
|
1142
|
-
1, 153, :_reduce_197,
|
1143
|
-
3, 153, :_reduce_198,
|
1144
|
-
1, 180, :_reduce_none,
|
1145
|
-
1, 180, :_reduce_none,
|
1142
|
+
1, 179, :_reduce_178,
|
1143
|
+
1, 179, :_reduce_none,
|
1144
|
+
1, 180, :_reduce_180,
|
1145
|
+
3, 180, :_reduce_181,
|
1146
1146
|
1, 181, :_reduce_none,
|
1147
1147
|
1, 181, :_reduce_none,
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
2,
|
1148
|
+
1, 178, :_reduce_none,
|
1149
|
+
2, 178, :_reduce_185,
|
1150
|
+
7, 139, :_reduce_186,
|
1151
|
+
2, 153, :_reduce_187,
|
1152
|
+
5, 153, :_reduce_188,
|
1153
|
+
1, 153, :_reduce_none,
|
1154
|
+
1, 170, :_reduce_none,
|
1155
|
+
1, 170, :_reduce_none,
|
1156
|
+
1, 170, :_reduce_none,
|
1157
|
+
1, 170, :_reduce_193,
|
1158
|
+
1, 170, :_reduce_194,
|
1159
|
+
1, 171, :_reduce_195,
|
1160
|
+
2, 171, :_reduce_196,
|
1161
|
+
2, 171, :_reduce_197,
|
1162
|
+
4, 171, :_reduce_198,
|
1163
|
+
4, 171, :_reduce_199,
|
1164
|
+
1, 155, :_reduce_200,
|
1165
|
+
3, 155, :_reduce_201,
|
1166
|
+
1, 182, :_reduce_none,
|
1167
|
+
1, 182, :_reduce_none,
|
1168
|
+
1, 183, :_reduce_none,
|
1169
|
+
1, 183, :_reduce_none,
|
1170
|
+
3, 185, :_reduce_206,
|
1152
1171
|
1, 185, :_reduce_207,
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
4,
|
1171
|
-
2,
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
1, 191, :
|
1176
|
-
|
1177
|
-
|
1178
|
-
1,
|
1179
|
-
1,
|
1180
|
-
3, 188, :_reduce_235,
|
1181
|
-
1, 192, :_reduce_none,
|
1172
|
+
2, 186, :_reduce_208,
|
1173
|
+
2, 184, :_reduce_209,
|
1174
|
+
1, 187, :_reduce_210,
|
1175
|
+
4, 187, :_reduce_211,
|
1176
|
+
4, 140, :_reduce_212,
|
1177
|
+
7, 140, :_reduce_213,
|
1178
|
+
3, 140, :_reduce_214,
|
1179
|
+
3, 140, :_reduce_215,
|
1180
|
+
3, 140, :_reduce_216,
|
1181
|
+
2, 188, :_reduce_217,
|
1182
|
+
5, 141, :_reduce_218,
|
1183
|
+
7, 141, :_reduce_219,
|
1184
|
+
1, 125, :_reduce_220,
|
1185
|
+
1, 142, :_reduce_221,
|
1186
|
+
1, 142, :_reduce_222,
|
1187
|
+
4, 143, :_reduce_223,
|
1188
|
+
2, 143, :_reduce_224,
|
1189
|
+
4, 143, :_reduce_225,
|
1190
|
+
2, 143, :_reduce_226,
|
1191
|
+
3, 144, :_reduce_227,
|
1192
|
+
4, 144, :_reduce_228,
|
1193
|
+
2, 144, :_reduce_229,
|
1194
|
+
1, 191, :_reduce_230,
|
1195
|
+
3, 191, :_reduce_231,
|
1196
|
+
3, 107, :_reduce_232,
|
1197
|
+
1, 193, :_reduce_none,
|
1198
|
+
1, 193, :_reduce_234,
|
1182
1199
|
1, 192, :_reduce_none,
|
1183
|
-
1, 192, :
|
1184
|
-
1,
|
1185
|
-
|
1186
|
-
1,
|
1187
|
-
1,
|
1188
|
-
1,
|
1189
|
-
1,
|
1190
|
-
1,
|
1191
|
-
1,
|
1192
|
-
|
1193
|
-
1,
|
1194
|
-
1,
|
1195
|
-
1,
|
1196
|
-
|
1200
|
+
1, 192, :_reduce_236,
|
1201
|
+
1, 190, :_reduce_237,
|
1202
|
+
3, 190, :_reduce_238,
|
1203
|
+
1, 194, :_reduce_none,
|
1204
|
+
1, 194, :_reduce_none,
|
1205
|
+
1, 194, :_reduce_none,
|
1206
|
+
1, 194, :_reduce_none,
|
1207
|
+
1, 194, :_reduce_none,
|
1208
|
+
1, 194, :_reduce_none,
|
1209
|
+
1, 146, :_reduce_none,
|
1210
|
+
1, 146, :_reduce_none,
|
1211
|
+
1, 146, :_reduce_none,
|
1212
|
+
1, 195, :_reduce_248,
|
1213
|
+
1, 195, :_reduce_249,
|
1214
|
+
2, 196, :_reduce_250,
|
1215
|
+
1, 198, :_reduce_251,
|
1197
1216
|
1, 200, :_reduce_252,
|
1198
1217
|
1, 201, :_reduce_253,
|
1199
|
-
2,
|
1200
|
-
|
1201
|
-
|
1202
|
-
2,
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
1,
|
1213
|
-
|
1214
|
-
|
1215
|
-
1,
|
1218
|
+
2, 199, :_reduce_254,
|
1219
|
+
1, 202, :_reduce_255,
|
1220
|
+
1, 203, :_reduce_256,
|
1221
|
+
2, 203, :_reduce_257,
|
1222
|
+
2, 197, :_reduce_258,
|
1223
|
+
2, 204, :_reduce_259,
|
1224
|
+
2, 204, :_reduce_260,
|
1225
|
+
3, 101, :_reduce_261,
|
1226
|
+
0, 189, :_reduce_none,
|
1227
|
+
1, 189, :_reduce_none,
|
1228
|
+
0, 205, :_reduce_264,
|
1229
|
+
2, 205, :_reduce_265,
|
1230
|
+
4, 205, :_reduce_266,
|
1231
|
+
1, 138, :_reduce_267,
|
1232
|
+
3, 138, :_reduce_268,
|
1233
|
+
5, 138, :_reduce_269,
|
1234
|
+
1, 206, :_reduce_none,
|
1235
|
+
1, 206, :_reduce_none,
|
1236
|
+
1, 147, :_reduce_272,
|
1237
|
+
1, 145, :_reduce_273,
|
1238
|
+
0, 115, :_reduce_none,
|
1239
|
+
1, 115, :_reduce_275,
|
1216
1240
|
0, 114, :_reduce_none,
|
1217
|
-
1, 114, :
|
1218
|
-
|
1219
|
-
1,
|
1220
|
-
1,
|
1221
|
-
1,
|
1222
|
-
1,
|
1223
|
-
1,
|
1224
|
-
1,
|
1225
|
-
1,
|
1226
|
-
1,
|
1227
|
-
1,
|
1228
|
-
1,
|
1229
|
-
1,
|
1230
|
-
1,
|
1231
|
-
1,
|
1232
|
-
1,
|
1233
|
-
1,
|
1234
|
-
1,
|
1235
|
-
1,
|
1236
|
-
1,
|
1237
|
-
1,
|
1238
|
-
1,
|
1239
|
-
1,
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
racc_shift_n = 536
|
1241
|
+
1, 114, :_reduce_none,
|
1242
|
+
1, 169, :_reduce_none,
|
1243
|
+
1, 169, :_reduce_none,
|
1244
|
+
1, 169, :_reduce_none,
|
1245
|
+
1, 169, :_reduce_none,
|
1246
|
+
1, 169, :_reduce_none,
|
1247
|
+
1, 169, :_reduce_none,
|
1248
|
+
1, 169, :_reduce_none,
|
1249
|
+
1, 169, :_reduce_none,
|
1250
|
+
1, 169, :_reduce_none,
|
1251
|
+
1, 169, :_reduce_none,
|
1252
|
+
1, 169, :_reduce_none,
|
1253
|
+
1, 169, :_reduce_none,
|
1254
|
+
1, 169, :_reduce_none,
|
1255
|
+
1, 169, :_reduce_none,
|
1256
|
+
1, 169, :_reduce_none,
|
1257
|
+
1, 169, :_reduce_none,
|
1258
|
+
1, 169, :_reduce_none,
|
1259
|
+
1, 169, :_reduce_none,
|
1260
|
+
1, 169, :_reduce_none,
|
1261
|
+
1, 169, :_reduce_none,
|
1262
|
+
1, 169, :_reduce_none,
|
1263
|
+
1, 169, :_reduce_none,
|
1264
|
+
0, 162, :_reduce_300 ]
|
1265
|
+
|
1266
|
+
racc_reduce_n = 301
|
1267
|
+
|
1268
|
+
racc_shift_n = 546
|
1247
1269
|
|
1248
1270
|
racc_token_table = {
|
1249
1271
|
false => 0,
|
@@ -1338,13 +1360,14 @@ racc_token_table = {
|
|
1338
1360
|
:CONSUMES => 89,
|
1339
1361
|
:SITE => 90,
|
1340
1362
|
:PLAN => 91,
|
1341
|
-
:
|
1342
|
-
:
|
1343
|
-
:
|
1344
|
-
:
|
1345
|
-
:
|
1363
|
+
:APPLY => 92,
|
1364
|
+
:LOW => 93,
|
1365
|
+
:HIGH => 94,
|
1366
|
+
:LISTSTART => 95,
|
1367
|
+
:SPLAT => 96,
|
1368
|
+
:MODULO => 97 }
|
1346
1369
|
|
1347
|
-
racc_nt_base =
|
1370
|
+
racc_nt_base = 98
|
1348
1371
|
|
1349
1372
|
racc_use_result_var = true
|
1350
1373
|
|
@@ -1457,6 +1480,7 @@ Racc_token_to_s_table = [
|
|
1457
1480
|
"CONSUMES",
|
1458
1481
|
"SITE",
|
1459
1482
|
"PLAN",
|
1483
|
+
"APPLY",
|
1460
1484
|
"LOW",
|
1461
1485
|
"HIGH",
|
1462
1486
|
"LISTSTART",
|
@@ -1499,6 +1523,7 @@ Racc_token_to_s_table = [
|
|
1499
1523
|
"application_expression",
|
1500
1524
|
"hostclass_expression",
|
1501
1525
|
"plan_expression",
|
1526
|
+
"apply_expression",
|
1502
1527
|
"node_definition_expression",
|
1503
1528
|
"site_definition_expression",
|
1504
1529
|
"epp_render_expression",
|
@@ -2097,43 +2122,45 @@ module_eval(<<'.,.,', 'egrammar.ra', 249)
|
|
2097
2122
|
|
2098
2123
|
# reduce 91 omitted
|
2099
2124
|
|
2100
|
-
|
2101
|
-
def _reduce_92(val, _values, result)
|
2102
|
-
result = Factory.NUMBER(val[0][:value]) ; loc result, val[0]
|
2103
|
-
result
|
2104
|
-
end
|
2105
|
-
.,.,
|
2125
|
+
# reduce 92 omitted
|
2106
2126
|
|
2107
2127
|
module_eval(<<'.,.,', 'egrammar.ra', 275)
|
2108
2128
|
def _reduce_93(val, _values, result)
|
2109
|
-
result = Factory.
|
2129
|
+
result = Factory.NUMBER(val[0][:value]) ; loc result, val[0]
|
2110
2130
|
result
|
2111
2131
|
end
|
2112
2132
|
.,.,
|
2113
2133
|
|
2114
2134
|
module_eval(<<'.,.,', 'egrammar.ra', 276)
|
2115
2135
|
def _reduce_94(val, _values, result)
|
2116
|
-
result = Factory.literal(:
|
2136
|
+
result = Factory.literal(val[0][:value]) ; loc result, val[0]
|
2117
2137
|
result
|
2118
2138
|
end
|
2119
2139
|
.,.,
|
2120
2140
|
|
2121
2141
|
module_eval(<<'.,.,', 'egrammar.ra', 277)
|
2122
2142
|
def _reduce_95(val, _values, result)
|
2123
|
-
result = Factory.literal(:
|
2143
|
+
result = Factory.literal(:default) ; loc result, val[0]
|
2124
2144
|
result
|
2125
2145
|
end
|
2126
2146
|
.,.,
|
2127
2147
|
|
2128
2148
|
module_eval(<<'.,.,', 'egrammar.ra', 278)
|
2129
2149
|
def _reduce_96(val, _values, result)
|
2130
|
-
result = Factory.
|
2150
|
+
result = Factory.literal(:undef) ; loc result, val[0]
|
2131
2151
|
result
|
2132
2152
|
end
|
2133
2153
|
.,.,
|
2134
2154
|
|
2135
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2155
|
+
module_eval(<<'.,.,', 'egrammar.ra', 279)
|
2136
2156
|
def _reduce_97(val, _values, result)
|
2157
|
+
result = Factory.QNAME_OR_NUMBER(val[0][:value]) ; loc result, val[0]
|
2158
|
+
result
|
2159
|
+
end
|
2160
|
+
.,.,
|
2161
|
+
|
2162
|
+
module_eval(<<'.,.,', 'egrammar.ra', 288)
|
2163
|
+
def _reduce_98(val, _values, result)
|
2137
2164
|
result = Factory.CALL_NAMED(val[0], true, val[1])
|
2138
2165
|
loc result, val[0], val[3]
|
2139
2166
|
|
@@ -2141,8 +2168,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 287)
|
|
2141
2168
|
end
|
2142
2169
|
.,.,
|
2143
2170
|
|
2144
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2145
|
-
def
|
2171
|
+
module_eval(<<'.,.,', 'egrammar.ra', 292)
|
2172
|
+
def _reduce_99(val, _values, result)
|
2146
2173
|
result = Factory.CALL_NAMED(val[0], true, [])
|
2147
2174
|
loc result, val[0], val[1]
|
2148
2175
|
|
@@ -2150,8 +2177,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 291)
|
|
2150
2177
|
end
|
2151
2178
|
.,.,
|
2152
2179
|
|
2153
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2154
|
-
def
|
2180
|
+
module_eval(<<'.,.,', 'egrammar.ra', 296)
|
2181
|
+
def _reduce_100(val, _values, result)
|
2155
2182
|
result = Factory.CALL_NAMED(val[0], true, val[1])
|
2156
2183
|
loc result, val[0], val[4]
|
2157
2184
|
result.lambda = val[4]
|
@@ -2160,8 +2187,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 295)
|
|
2160
2187
|
end
|
2161
2188
|
.,.,
|
2162
2189
|
|
2163
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2164
|
-
def
|
2190
|
+
module_eval(<<'.,.,', 'egrammar.ra', 301)
|
2191
|
+
def _reduce_101(val, _values, result)
|
2165
2192
|
result = Factory.CALL_NAMED(val[0], true, [])
|
2166
2193
|
loc result, val[0], val[2]
|
2167
2194
|
result.lambda = val[2]
|
@@ -2170,57 +2197,57 @@ module_eval(<<'.,.,', 'egrammar.ra', 300)
|
|
2170
2197
|
end
|
2171
2198
|
.,.,
|
2172
2199
|
|
2173
|
-
module_eval(<<'.,.,', 'egrammar.ra', 306)
|
2174
|
-
def _reduce_101(val, _values, result)
|
2175
|
-
result = val[0]
|
2176
|
-
result
|
2177
|
-
end
|
2178
|
-
.,.,
|
2179
|
-
|
2180
2200
|
module_eval(<<'.,.,', 'egrammar.ra', 307)
|
2181
2201
|
def _reduce_102(val, _values, result)
|
2182
|
-
result =
|
2202
|
+
result = val[0]
|
2183
2203
|
result
|
2184
2204
|
end
|
2185
2205
|
.,.,
|
2186
2206
|
|
2187
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2207
|
+
module_eval(<<'.,.,', 'egrammar.ra', 308)
|
2188
2208
|
def _reduce_103(val, _values, result)
|
2189
|
-
result = val[0]
|
2209
|
+
result = Factory.QNAME(val[0][:value]); loc result, val[0]
|
2190
2210
|
result
|
2191
2211
|
end
|
2192
2212
|
.,.,
|
2193
2213
|
|
2194
2214
|
module_eval(<<'.,.,', 'egrammar.ra', 313)
|
2195
2215
|
def _reduce_104(val, _values, result)
|
2196
|
-
result = val[0]
|
2216
|
+
result = val[0]
|
2197
2217
|
result
|
2198
2218
|
end
|
2199
2219
|
.,.,
|
2200
2220
|
|
2201
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2221
|
+
module_eval(<<'.,.,', 'egrammar.ra', 314)
|
2202
2222
|
def _reduce_105(val, _values, result)
|
2203
|
-
result =
|
2223
|
+
result = val[0]; val[0].lambda = val[1]
|
2204
2224
|
result
|
2205
2225
|
end
|
2206
2226
|
.,.,
|
2207
2227
|
|
2208
2228
|
module_eval(<<'.,.,', 'egrammar.ra', 317)
|
2209
2229
|
def _reduce_106(val, _values, result)
|
2210
|
-
result = Factory.CALL_METHOD(val[0], []); loc result, val[1], val[3]
|
2230
|
+
result = Factory.CALL_METHOD(val[0], val[2]); loc result, val[1], val[3]
|
2211
2231
|
result
|
2212
2232
|
end
|
2213
2233
|
.,.,
|
2214
2234
|
|
2215
2235
|
module_eval(<<'.,.,', 'egrammar.ra', 318)
|
2216
2236
|
def _reduce_107(val, _values, result)
|
2217
|
-
result = Factory.CALL_METHOD(val[0], []); loc result, val[
|
2237
|
+
result = Factory.CALL_METHOD(val[0], []); loc result, val[1], val[3]
|
2218
2238
|
result
|
2219
2239
|
end
|
2220
2240
|
.,.,
|
2221
2241
|
|
2222
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2242
|
+
module_eval(<<'.,.,', 'egrammar.ra', 319)
|
2223
2243
|
def _reduce_108(val, _values, result)
|
2244
|
+
result = Factory.CALL_METHOD(val[0], []); loc result, val[0]
|
2245
|
+
result
|
2246
|
+
end
|
2247
|
+
.,.,
|
2248
|
+
|
2249
|
+
module_eval(<<'.,.,', 'egrammar.ra', 323)
|
2250
|
+
def _reduce_109(val, _values, result)
|
2224
2251
|
result = val[0].dot(Factory.fqn(val[2][:value]))
|
2225
2252
|
loc result, val[1], val[2]
|
2226
2253
|
|
@@ -2228,8 +2255,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 322)
|
|
2228
2255
|
end
|
2229
2256
|
.,.,
|
2230
2257
|
|
2231
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2232
|
-
def
|
2258
|
+
module_eval(<<'.,.,', 'egrammar.ra', 327)
|
2259
|
+
def _reduce_110(val, _values, result)
|
2233
2260
|
result = val[0].dot(Factory.fqn(val[2][:value]))
|
2234
2261
|
loc result, val[1], val[2]
|
2235
2262
|
|
@@ -2237,8 +2264,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 326)
|
|
2237
2264
|
end
|
2238
2265
|
.,.,
|
2239
2266
|
|
2240
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2241
|
-
def
|
2267
|
+
module_eval(<<'.,.,', 'egrammar.ra', 335)
|
2268
|
+
def _reduce_111(val, _values, result)
|
2242
2269
|
result = Factory.LAMBDA(val[0][:value], val[2][:value], val[1])
|
2243
2270
|
loc result, val[0][:start], val[2][:end]
|
2244
2271
|
|
@@ -2246,36 +2273,36 @@ module_eval(<<'.,.,', 'egrammar.ra', 334)
|
|
2246
2273
|
end
|
2247
2274
|
.,.,
|
2248
2275
|
|
2249
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2250
|
-
def
|
2276
|
+
module_eval(<<'.,.,', 'egrammar.ra', 340)
|
2277
|
+
def _reduce_112(val, _values, result)
|
2251
2278
|
result = {:end => val[2], :value =>val[1] }
|
2252
2279
|
result
|
2253
2280
|
end
|
2254
2281
|
.,.,
|
2255
2282
|
|
2256
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2257
|
-
def
|
2283
|
+
module_eval(<<'.,.,', 'egrammar.ra', 341)
|
2284
|
+
def _reduce_113(val, _values, result)
|
2258
2285
|
result = {:end => val[1], :value => nil }
|
2259
2286
|
result
|
2260
2287
|
end
|
2261
2288
|
.,.,
|
2262
2289
|
|
2263
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2264
|
-
def
|
2290
|
+
module_eval(<<'.,.,', 'egrammar.ra', 345)
|
2291
|
+
def _reduce_114(val, _values, result)
|
2265
2292
|
result = {:start => val[0], :value => [] }
|
2266
2293
|
result
|
2267
2294
|
end
|
2268
2295
|
.,.,
|
2269
2296
|
|
2270
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2271
|
-
def
|
2297
|
+
module_eval(<<'.,.,', 'egrammar.ra', 346)
|
2298
|
+
def _reduce_115(val, _values, result)
|
2272
2299
|
result = {:start => val[0], :value => val[1] }
|
2273
2300
|
result
|
2274
2301
|
end
|
2275
2302
|
.,.,
|
2276
2303
|
|
2277
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2278
|
-
def
|
2304
|
+
module_eval(<<'.,.,', 'egrammar.ra', 354)
|
2305
|
+
def _reduce_116(val, _values, result)
|
2279
2306
|
result = val[1]
|
2280
2307
|
loc(result, val[0], val[1])
|
2281
2308
|
|
@@ -2283,8 +2310,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 353)
|
|
2283
2310
|
end
|
2284
2311
|
.,.,
|
2285
2312
|
|
2286
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2287
|
-
def
|
2313
|
+
module_eval(<<'.,.,', 'egrammar.ra', 361)
|
2314
|
+
def _reduce_117(val, _values, result)
|
2288
2315
|
result = Factory.IF(val[0], Factory.block_or_expression(val[2], val[1], val[3]), val[4])
|
2289
2316
|
loc(result, val[0], (val[4] ? val[4] : val[3]))
|
2290
2317
|
|
@@ -2292,8 +2319,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 360)
|
|
2292
2319
|
end
|
2293
2320
|
.,.,
|
2294
2321
|
|
2295
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2296
|
-
def
|
2322
|
+
module_eval(<<'.,.,', 'egrammar.ra', 365)
|
2323
|
+
def _reduce_118(val, _values, result)
|
2297
2324
|
result = Factory.IF(val[0], nil, val[3])
|
2298
2325
|
loc(result, val[0], (val[3] ? val[3] : val[2]))
|
2299
2326
|
|
@@ -2301,10 +2328,10 @@ module_eval(<<'.,.,', 'egrammar.ra', 364)
|
|
2301
2328
|
end
|
2302
2329
|
.,.,
|
2303
2330
|
|
2304
|
-
# reduce
|
2331
|
+
# reduce 119 omitted
|
2305
2332
|
|
2306
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2307
|
-
def
|
2333
|
+
module_eval(<<'.,.,', 'egrammar.ra', 373)
|
2334
|
+
def _reduce_120(val, _values, result)
|
2308
2335
|
result = val[1]
|
2309
2336
|
loc(result, val[0], val[1])
|
2310
2337
|
|
@@ -2312,24 +2339,24 @@ module_eval(<<'.,.,', 'egrammar.ra', 372)
|
|
2312
2339
|
end
|
2313
2340
|
.,.,
|
2314
2341
|
|
2315
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2316
|
-
def
|
2342
|
+
module_eval(<<'.,.,', 'egrammar.ra', 377)
|
2343
|
+
def _reduce_121(val, _values, result)
|
2317
2344
|
result = Factory.block_or_expression(val[2], val[1], val[3])
|
2318
2345
|
|
2319
2346
|
result
|
2320
2347
|
end
|
2321
2348
|
.,.,
|
2322
2349
|
|
2323
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2324
|
-
def
|
2350
|
+
module_eval(<<'.,.,', 'egrammar.ra', 380)
|
2351
|
+
def _reduce_122(val, _values, result)
|
2325
2352
|
result = nil # don't think a nop is needed here either
|
2326
2353
|
|
2327
2354
|
result
|
2328
2355
|
end
|
2329
2356
|
.,.,
|
2330
2357
|
|
2331
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2332
|
-
def
|
2358
|
+
module_eval(<<'.,.,', 'egrammar.ra', 387)
|
2359
|
+
def _reduce_123(val, _values, result)
|
2333
2360
|
result = Factory.UNLESS(val[1], Factory.block_or_expression(val[3], val[2], val[4]), val[5])
|
2334
2361
|
loc result, val[0], val[4]
|
2335
2362
|
|
@@ -2337,8 +2364,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 386)
|
|
2337
2364
|
end
|
2338
2365
|
.,.,
|
2339
2366
|
|
2340
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2341
|
-
def
|
2367
|
+
module_eval(<<'.,.,', 'egrammar.ra', 391)
|
2368
|
+
def _reduce_124(val, _values, result)
|
2342
2369
|
result = Factory.UNLESS(val[1], nil, val[4])
|
2343
2370
|
loc result, val[0], val[4]
|
2344
2371
|
|
@@ -2346,26 +2373,26 @@ module_eval(<<'.,.,', 'egrammar.ra', 390)
|
|
2346
2373
|
end
|
2347
2374
|
.,.,
|
2348
2375
|
|
2349
|
-
# reduce
|
2376
|
+
# reduce 125 omitted
|
2350
2377
|
|
2351
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2352
|
-
def
|
2378
|
+
module_eval(<<'.,.,', 'egrammar.ra', 401)
|
2379
|
+
def _reduce_126(val, _values, result)
|
2353
2380
|
result = Factory.block_or_expression(val[2], val[1], val[3])
|
2354
2381
|
|
2355
2382
|
result
|
2356
2383
|
end
|
2357
2384
|
.,.,
|
2358
2385
|
|
2359
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2360
|
-
def
|
2386
|
+
module_eval(<<'.,.,', 'egrammar.ra', 404)
|
2387
|
+
def _reduce_127(val, _values, result)
|
2361
2388
|
result = nil # don't think a nop is needed here either
|
2362
2389
|
|
2363
2390
|
result
|
2364
2391
|
end
|
2365
2392
|
.,.,
|
2366
2393
|
|
2367
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2368
|
-
def
|
2394
|
+
module_eval(<<'.,.,', 'egrammar.ra', 411)
|
2395
|
+
def _reduce_128(val, _values, result)
|
2369
2396
|
result = Factory.CASE(val[1], *val[3])
|
2370
2397
|
loc result, val[0], val[4]
|
2371
2398
|
|
@@ -2373,65 +2400,65 @@ module_eval(<<'.,.,', 'egrammar.ra', 410)
|
|
2373
2400
|
end
|
2374
2401
|
.,.,
|
2375
2402
|
|
2376
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2377
|
-
def
|
2403
|
+
module_eval(<<'.,.,', 'egrammar.ra', 417)
|
2404
|
+
def _reduce_129(val, _values, result)
|
2378
2405
|
result = [val[0]]
|
2379
2406
|
result
|
2380
2407
|
end
|
2381
2408
|
.,.,
|
2382
2409
|
|
2383
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2384
|
-
def
|
2410
|
+
module_eval(<<'.,.,', 'egrammar.ra', 418)
|
2411
|
+
def _reduce_130(val, _values, result)
|
2385
2412
|
result = val[0].push val[1]
|
2386
2413
|
result
|
2387
2414
|
end
|
2388
2415
|
.,.,
|
2389
2416
|
|
2390
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2391
|
-
def
|
2417
|
+
module_eval(<<'.,.,', 'egrammar.ra', 423)
|
2418
|
+
def _reduce_131(val, _values, result)
|
2392
2419
|
result = Factory.WHEN(val[0], val[3]); loc result, val[1], val[4]
|
2393
2420
|
|
2394
2421
|
result
|
2395
2422
|
end
|
2396
2423
|
.,.,
|
2397
2424
|
|
2398
|
-
# reduce 131 omitted
|
2399
|
-
|
2400
2425
|
# reduce 132 omitted
|
2401
2426
|
|
2402
2427
|
# reduce 133 omitted
|
2403
2428
|
|
2404
|
-
|
2405
|
-
|
2429
|
+
# reduce 134 omitted
|
2430
|
+
|
2431
|
+
module_eval(<<'.,.,', 'egrammar.ra', 439)
|
2432
|
+
def _reduce_135(val, _values, result)
|
2406
2433
|
result = val[1]
|
2407
2434
|
|
2408
2435
|
result
|
2409
2436
|
end
|
2410
2437
|
.,.,
|
2411
2438
|
|
2412
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2413
|
-
def
|
2439
|
+
module_eval(<<'.,.,', 'egrammar.ra', 444)
|
2440
|
+
def _reduce_136(val, _values, result)
|
2414
2441
|
result = [val[0]]
|
2415
2442
|
result
|
2416
2443
|
end
|
2417
2444
|
.,.,
|
2418
2445
|
|
2419
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2420
|
-
def
|
2446
|
+
module_eval(<<'.,.,', 'egrammar.ra', 445)
|
2447
|
+
def _reduce_137(val, _values, result)
|
2421
2448
|
result = val[0].push val[2]
|
2422
2449
|
result
|
2423
2450
|
end
|
2424
2451
|
.,.,
|
2425
2452
|
|
2426
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2427
|
-
def
|
2453
|
+
module_eval(<<'.,.,', 'egrammar.ra', 450)
|
2454
|
+
def _reduce_138(val, _values, result)
|
2428
2455
|
result = Factory.MAP(val[0], val[2]) ; loc result, val[1]
|
2429
2456
|
result
|
2430
2457
|
end
|
2431
2458
|
.,.,
|
2432
2459
|
|
2433
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2434
|
-
def
|
2460
|
+
module_eval(<<'.,.,', 'egrammar.ra', 460)
|
2461
|
+
def _reduce_139(val, _values, result)
|
2435
2462
|
result = Factory.COLLECT(val[0], val[1], val[3])
|
2436
2463
|
loc result, val[0], val[5]
|
2437
2464
|
|
@@ -2439,8 +2466,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 459)
|
|
2439
2466
|
end
|
2440
2467
|
.,.,
|
2441
2468
|
|
2442
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2443
|
-
def
|
2469
|
+
module_eval(<<'.,.,', 'egrammar.ra', 464)
|
2470
|
+
def _reduce_140(val, _values, result)
|
2444
2471
|
result = Factory.COLLECT(val[0], val[1], [])
|
2445
2472
|
loc result, val[0], val[1]
|
2446
2473
|
|
@@ -2448,51 +2475,51 @@ module_eval(<<'.,.,', 'egrammar.ra', 463)
|
|
2448
2475
|
end
|
2449
2476
|
.,.,
|
2450
2477
|
|
2451
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2452
|
-
def
|
2478
|
+
module_eval(<<'.,.,', 'egrammar.ra', 469)
|
2479
|
+
def _reduce_141(val, _values, result)
|
2453
2480
|
result = Factory.VIRTUAL_QUERY(val[1]) ; loc result, val[0], val[2]
|
2454
2481
|
result
|
2455
2482
|
end
|
2456
2483
|
.,.,
|
2457
2484
|
|
2458
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2459
|
-
def
|
2485
|
+
module_eval(<<'.,.,', 'egrammar.ra', 470)
|
2486
|
+
def _reduce_142(val, _values, result)
|
2460
2487
|
result = Factory.EXPORTED_QUERY(val[1]) ; loc result, val[0], val[2]
|
2461
2488
|
result
|
2462
2489
|
end
|
2463
2490
|
.,.,
|
2464
2491
|
|
2465
|
-
# reduce 142 omitted
|
2466
|
-
|
2467
2492
|
# reduce 143 omitted
|
2468
2493
|
|
2469
|
-
|
2470
|
-
|
2494
|
+
# reduce 144 omitted
|
2495
|
+
|
2496
|
+
module_eval(<<'.,.,', 'egrammar.ra', 479)
|
2497
|
+
def _reduce_145(val, _values, result)
|
2471
2498
|
result = []
|
2472
2499
|
result
|
2473
2500
|
end
|
2474
2501
|
.,.,
|
2475
2502
|
|
2476
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2477
|
-
def
|
2503
|
+
module_eval(<<'.,.,', 'egrammar.ra', 480)
|
2504
|
+
def _reduce_146(val, _values, result)
|
2478
2505
|
result = [val[0]]
|
2479
2506
|
result
|
2480
2507
|
end
|
2481
2508
|
.,.,
|
2482
2509
|
|
2483
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2484
|
-
def
|
2510
|
+
module_eval(<<'.,.,', 'egrammar.ra', 481)
|
2511
|
+
def _reduce_147(val, _values, result)
|
2485
2512
|
result = val[0].push(val[2])
|
2486
2513
|
result
|
2487
2514
|
end
|
2488
2515
|
.,.,
|
2489
2516
|
|
2490
|
-
# reduce 147 omitted
|
2491
|
-
|
2492
2517
|
# reduce 148 omitted
|
2493
2518
|
|
2494
|
-
|
2495
|
-
|
2519
|
+
# reduce 149 omitted
|
2520
|
+
|
2521
|
+
module_eval(<<'.,.,', 'egrammar.ra', 496)
|
2522
|
+
def _reduce_150(val, _values, result)
|
2496
2523
|
result = Factory.ATTRIBUTE_OP(val[0][:value], '=>', val[2])
|
2497
2524
|
loc result, val[0], val[2]
|
2498
2525
|
|
@@ -2500,8 +2527,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 495)
|
|
2500
2527
|
end
|
2501
2528
|
.,.,
|
2502
2529
|
|
2503
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2504
|
-
def
|
2530
|
+
module_eval(<<'.,.,', 'egrammar.ra', 500)
|
2531
|
+
def _reduce_151(val, _values, result)
|
2505
2532
|
result = Factory.ATTRIBUTE_OP(val[0][:value], '+>', val[2])
|
2506
2533
|
loc result, val[0], val[2]
|
2507
2534
|
|
@@ -2509,16 +2536,16 @@ module_eval(<<'.,.,', 'egrammar.ra', 499)
|
|
2509
2536
|
end
|
2510
2537
|
.,.,
|
2511
2538
|
|
2512
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2513
|
-
def
|
2539
|
+
module_eval(<<'.,.,', 'egrammar.ra', 504)
|
2540
|
+
def _reduce_152(val, _values, result)
|
2514
2541
|
result = Factory.ATTRIBUTES_OP(val[2]) ; loc result, val[0], val[2]
|
2515
2542
|
|
2516
2543
|
result
|
2517
2544
|
end
|
2518
2545
|
.,.,
|
2519
2546
|
|
2520
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2521
|
-
def
|
2547
|
+
module_eval(<<'.,.,', 'egrammar.ra', 513)
|
2548
|
+
def _reduce_153(val, _values, result)
|
2522
2549
|
definition = Factory.DEFINITION(classname(val[1][:value]), val[2], val[4])
|
2523
2550
|
loc(definition, val[0], val[5])
|
2524
2551
|
result = add_definition(definition)
|
@@ -2531,8 +2558,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 512)
|
|
2531
2558
|
end
|
2532
2559
|
.,.,
|
2533
2560
|
|
2534
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2535
|
-
def
|
2561
|
+
module_eval(<<'.,.,', 'egrammar.ra', 525)
|
2562
|
+
def _reduce_154(val, _values, result)
|
2536
2563
|
definition = Factory.APPLICATION(classname(val[1][:value]), val[2], val[4])
|
2537
2564
|
loc(definition, val[0], val[5])
|
2538
2565
|
result = add_definition(definition)
|
@@ -2541,8 +2568,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 524)
|
|
2541
2568
|
end
|
2542
2569
|
.,.,
|
2543
2570
|
|
2544
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2545
|
-
def
|
2571
|
+
module_eval(<<'.,.,', 'egrammar.ra', 532)
|
2572
|
+
def _reduce_155(val, _values, result)
|
2546
2573
|
result = Factory.CAPABILITY_MAPPING(val[1][:value],
|
2547
2574
|
Factory.QREF(classname(val[0][:value])),
|
2548
2575
|
classname(val[2][:value]), val[4])
|
@@ -2553,8 +2580,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 531)
|
|
2553
2580
|
end
|
2554
2581
|
.,.,
|
2555
2582
|
|
2556
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2557
|
-
def
|
2583
|
+
module_eval(<<'.,.,', 'egrammar.ra', 539)
|
2584
|
+
def _reduce_156(val, _values, result)
|
2558
2585
|
result = Factory.CAPABILITY_MAPPING(val[1][:value],
|
2559
2586
|
val[0],
|
2560
2587
|
classname(val[2][:value]), val[4])
|
@@ -2565,12 +2592,12 @@ module_eval(<<'.,.,', 'egrammar.ra', 538)
|
|
2565
2592
|
end
|
2566
2593
|
.,.,
|
2567
2594
|
|
2568
|
-
# reduce 156 omitted
|
2569
|
-
|
2570
2595
|
# reduce 157 omitted
|
2571
2596
|
|
2572
|
-
|
2573
|
-
|
2597
|
+
# reduce 158 omitted
|
2598
|
+
|
2599
|
+
module_eval(<<'.,.,', 'egrammar.ra', 553)
|
2600
|
+
def _reduce_159(val, _values, result)
|
2574
2601
|
# Remove this plan's name from the namestack as all nested plans have been parsed
|
2575
2602
|
namepop
|
2576
2603
|
definition = Factory.PLAN(classname(val[1][:value]), val[2], val[4])
|
@@ -2581,8 +2608,26 @@ module_eval(<<'.,.,', 'egrammar.ra', 552)
|
|
2581
2608
|
end
|
2582
2609
|
.,.,
|
2583
2610
|
|
2584
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2585
|
-
def
|
2611
|
+
module_eval(<<'.,.,', 'egrammar.ra', 562)
|
2612
|
+
def _reduce_160(val, _values, result)
|
2613
|
+
result = Factory.APPLY(val[2], Factory.APPLY_BLOCK(val[6]))
|
2614
|
+
loc result, val[0], val[7]
|
2615
|
+
|
2616
|
+
result
|
2617
|
+
end
|
2618
|
+
.,.,
|
2619
|
+
|
2620
|
+
module_eval(<<'.,.,', 'egrammar.ra', 566)
|
2621
|
+
def _reduce_161(val, _values, result)
|
2622
|
+
result = Factory.APPLY(val[2], Factory.APPLY_BLOCK([]))
|
2623
|
+
loc result, val[0], val[6]
|
2624
|
+
|
2625
|
+
result
|
2626
|
+
end
|
2627
|
+
.,.,
|
2628
|
+
|
2629
|
+
module_eval(<<'.,.,', 'egrammar.ra', 576)
|
2630
|
+
def _reduce_162(val, _values, result)
|
2586
2631
|
# Remove this class' name from the namestack as all nested classes have been parsed
|
2587
2632
|
namepop
|
2588
2633
|
definition = Factory.HOSTCLASS(classname(val[1][:value]), val[2], token_text(val[3]), val[5])
|
@@ -2593,32 +2638,32 @@ module_eval(<<'.,.,', 'egrammar.ra', 565)
|
|
2593
2638
|
end
|
2594
2639
|
.,.,
|
2595
2640
|
|
2596
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2597
|
-
def
|
2641
|
+
module_eval(<<'.,.,', 'egrammar.ra', 587)
|
2642
|
+
def _reduce_163(val, _values, result)
|
2598
2643
|
namestack(val[0][:value]) ; result = val[0]
|
2599
2644
|
result
|
2600
2645
|
end
|
2601
2646
|
.,.,
|
2602
2647
|
|
2603
|
-
# reduce
|
2648
|
+
# reduce 164 omitted
|
2604
2649
|
|
2605
|
-
# reduce
|
2650
|
+
# reduce 165 omitted
|
2606
2651
|
|
2607
|
-
# reduce
|
2652
|
+
# reduce 166 omitted
|
2608
2653
|
|
2609
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2610
|
-
def
|
2654
|
+
module_eval(<<'.,.,', 'egrammar.ra', 596)
|
2655
|
+
def _reduce_167(val, _values, result)
|
2611
2656
|
result = val[1]
|
2612
2657
|
result
|
2613
2658
|
end
|
2614
2659
|
.,.,
|
2615
2660
|
|
2616
|
-
# reduce
|
2661
|
+
# reduce 168 omitted
|
2617
2662
|
|
2618
|
-
# reduce
|
2663
|
+
# reduce 169 omitted
|
2619
2664
|
|
2620
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2621
|
-
def
|
2665
|
+
module_eval(<<'.,.,', 'egrammar.ra', 613)
|
2666
|
+
def _reduce_170(val, _values, result)
|
2622
2667
|
definition = Factory.SITE(val[2])
|
2623
2668
|
loc(definition, val[0], val[3])
|
2624
2669
|
result = add_definition(definition)
|
@@ -2627,8 +2672,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 602)
|
|
2627
2672
|
end
|
2628
2673
|
.,.,
|
2629
2674
|
|
2630
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2631
|
-
def
|
2675
|
+
module_eval(<<'.,.,', 'egrammar.ra', 618)
|
2676
|
+
def _reduce_171(val, _values, result)
|
2632
2677
|
definition = Factory.SITE(nil)
|
2633
2678
|
loc(definition, val[0], val[2])
|
2634
2679
|
result = add_definition(definition)
|
@@ -2637,8 +2682,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 607)
|
|
2637
2682
|
end
|
2638
2683
|
.,.,
|
2639
2684
|
|
2640
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2641
|
-
def
|
2685
|
+
module_eval(<<'.,.,', 'egrammar.ra', 629)
|
2686
|
+
def _reduce_172(val, _values, result)
|
2642
2687
|
definition = Factory.NODE(val[1], val[3], val[5])
|
2643
2688
|
loc(definition, val[0], val[6])
|
2644
2689
|
result = add_definition(definition)
|
@@ -2647,8 +2692,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 618)
|
|
2647
2692
|
end
|
2648
2693
|
.,.,
|
2649
2694
|
|
2650
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2651
|
-
def
|
2695
|
+
module_eval(<<'.,.,', 'egrammar.ra', 634)
|
2696
|
+
def _reduce_173(val, _values, result)
|
2652
2697
|
definition = Factory.NODE(val[1], val[3], nil)
|
2653
2698
|
loc(definition, val[0], val[5])
|
2654
2699
|
result = add_definition(definition)
|
@@ -2657,62 +2702,62 @@ module_eval(<<'.,.,', 'egrammar.ra', 623)
|
|
2657
2702
|
end
|
2658
2703
|
.,.,
|
2659
2704
|
|
2660
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2661
|
-
def
|
2705
|
+
module_eval(<<'.,.,', 'egrammar.ra', 645)
|
2706
|
+
def _reduce_174(val, _values, result)
|
2662
2707
|
result = [result]
|
2663
2708
|
result
|
2664
2709
|
end
|
2665
2710
|
.,.,
|
2666
2711
|
|
2667
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2668
|
-
def
|
2712
|
+
module_eval(<<'.,.,', 'egrammar.ra', 646)
|
2713
|
+
def _reduce_175(val, _values, result)
|
2669
2714
|
result = val[0].push(val[2])
|
2670
2715
|
result
|
2671
2716
|
end
|
2672
2717
|
.,.,
|
2673
2718
|
|
2674
|
-
# reduce
|
2719
|
+
# reduce 176 omitted
|
2675
2720
|
|
2676
|
-
# reduce
|
2721
|
+
# reduce 177 omitted
|
2677
2722
|
|
2678
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2679
|
-
def
|
2723
|
+
module_eval(<<'.,.,', 'egrammar.ra', 653)
|
2724
|
+
def _reduce_178(val, _values, result)
|
2680
2725
|
result = Factory.literal(:default); loc result, val[0]
|
2681
2726
|
result
|
2682
2727
|
end
|
2683
2728
|
.,.,
|
2684
2729
|
|
2685
|
-
# reduce
|
2730
|
+
# reduce 179 omitted
|
2686
2731
|
|
2687
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2688
|
-
def
|
2732
|
+
module_eval(<<'.,.,', 'egrammar.ra', 657)
|
2733
|
+
def _reduce_180(val, _values, result)
|
2689
2734
|
result = Factory.literal(val[0][:value]); loc result, val[0]
|
2690
2735
|
result
|
2691
2736
|
end
|
2692
2737
|
.,.,
|
2693
2738
|
|
2694
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2695
|
-
def
|
2739
|
+
module_eval(<<'.,.,', 'egrammar.ra', 658)
|
2740
|
+
def _reduce_181(val, _values, result)
|
2696
2741
|
result = Factory.concat(val[0], '.', val[2][:value]); loc result, val[0], val[2]
|
2697
2742
|
result
|
2698
2743
|
end
|
2699
2744
|
.,.,
|
2700
2745
|
|
2701
|
-
# reduce
|
2746
|
+
# reduce 182 omitted
|
2702
2747
|
|
2703
|
-
# reduce
|
2748
|
+
# reduce 183 omitted
|
2704
2749
|
|
2705
|
-
# reduce
|
2750
|
+
# reduce 184 omitted
|
2706
2751
|
|
2707
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2708
|
-
def
|
2752
|
+
module_eval(<<'.,.,', 'egrammar.ra', 667)
|
2753
|
+
def _reduce_185(val, _values, result)
|
2709
2754
|
result = val[1]
|
2710
2755
|
result
|
2711
2756
|
end
|
2712
2757
|
.,.,
|
2713
2758
|
|
2714
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2715
|
-
def
|
2759
|
+
module_eval(<<'.,.,', 'egrammar.ra', 673)
|
2760
|
+
def _reduce_186(val, _values, result)
|
2716
2761
|
definition = Factory.FUNCTION(val[1][:value], val[2], val[5], val[3])
|
2717
2762
|
loc(definition, val[0], val[6])
|
2718
2763
|
result = add_definition(definition)
|
@@ -2721,143 +2766,143 @@ module_eval(<<'.,.,', 'egrammar.ra', 662)
|
|
2721
2766
|
end
|
2722
2767
|
.,.,
|
2723
2768
|
|
2724
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2725
|
-
def
|
2769
|
+
module_eval(<<'.,.,', 'egrammar.ra', 679)
|
2770
|
+
def _reduce_187(val, _values, result)
|
2726
2771
|
result = val[1]
|
2727
2772
|
result
|
2728
2773
|
end
|
2729
2774
|
.,.,
|
2730
2775
|
|
2731
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2732
|
-
def
|
2776
|
+
module_eval(<<'.,.,', 'egrammar.ra', 680)
|
2777
|
+
def _reduce_188(val, _values, result)
|
2733
2778
|
result = val[1].access(val[3]) ; loc result, val[1], val[4]
|
2734
2779
|
result
|
2735
2780
|
end
|
2736
2781
|
.,.,
|
2737
2782
|
|
2738
|
-
# reduce
|
2783
|
+
# reduce 189 omitted
|
2739
2784
|
|
2740
|
-
# reduce
|
2785
|
+
# reduce 190 omitted
|
2741
2786
|
|
2742
|
-
# reduce
|
2787
|
+
# reduce 191 omitted
|
2743
2788
|
|
2744
|
-
# reduce
|
2789
|
+
# reduce 192 omitted
|
2745
2790
|
|
2746
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2747
|
-
def
|
2791
|
+
module_eval(<<'.,.,', 'egrammar.ra', 690)
|
2792
|
+
def _reduce_193(val, _values, result)
|
2748
2793
|
error val[0], "'class' keyword not allowed at this location"
|
2749
2794
|
result
|
2750
2795
|
end
|
2751
2796
|
.,.,
|
2752
2797
|
|
2753
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2754
|
-
def
|
2798
|
+
module_eval(<<'.,.,', 'egrammar.ra', 691)
|
2799
|
+
def _reduce_194(val, _values, result)
|
2755
2800
|
error val[0], "A quoted string is not valid as a name here"
|
2756
2801
|
result
|
2757
2802
|
end
|
2758
2803
|
.,.,
|
2759
2804
|
|
2760
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2761
|
-
def
|
2805
|
+
module_eval(<<'.,.,', 'egrammar.ra', 695)
|
2806
|
+
def _reduce_195(val, _values, result)
|
2762
2807
|
result = []
|
2763
2808
|
result
|
2764
2809
|
end
|
2765
2810
|
.,.,
|
2766
2811
|
|
2767
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2768
|
-
def
|
2812
|
+
module_eval(<<'.,.,', 'egrammar.ra', 696)
|
2813
|
+
def _reduce_196(val, _values, result)
|
2769
2814
|
result = []
|
2770
2815
|
result
|
2771
2816
|
end
|
2772
2817
|
.,.,
|
2773
2818
|
|
2774
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2775
|
-
def
|
2819
|
+
module_eval(<<'.,.,', 'egrammar.ra', 697)
|
2820
|
+
def _reduce_197(val, _values, result)
|
2776
2821
|
result = []
|
2777
2822
|
result
|
2778
2823
|
end
|
2779
2824
|
.,.,
|
2780
2825
|
|
2781
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2782
|
-
def
|
2826
|
+
module_eval(<<'.,.,', 'egrammar.ra', 698)
|
2827
|
+
def _reduce_198(val, _values, result)
|
2783
2828
|
result = val[1]
|
2784
2829
|
result
|
2785
2830
|
end
|
2786
2831
|
.,.,
|
2787
2832
|
|
2788
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2789
|
-
def
|
2833
|
+
module_eval(<<'.,.,', 'egrammar.ra', 699)
|
2834
|
+
def _reduce_199(val, _values, result)
|
2790
2835
|
result = val[1]
|
2791
2836
|
result
|
2792
2837
|
end
|
2793
2838
|
.,.,
|
2794
2839
|
|
2795
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2796
|
-
def
|
2840
|
+
module_eval(<<'.,.,', 'egrammar.ra', 703)
|
2841
|
+
def _reduce_200(val, _values, result)
|
2797
2842
|
result = [val[0]]
|
2798
2843
|
result
|
2799
2844
|
end
|
2800
2845
|
.,.,
|
2801
2846
|
|
2802
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2803
|
-
def
|
2847
|
+
module_eval(<<'.,.,', 'egrammar.ra', 704)
|
2848
|
+
def _reduce_201(val, _values, result)
|
2804
2849
|
result = val[0].push(val[2])
|
2805
2850
|
result
|
2806
2851
|
end
|
2807
2852
|
.,.,
|
2808
2853
|
|
2809
|
-
# reduce
|
2854
|
+
# reduce 202 omitted
|
2810
2855
|
|
2811
|
-
# reduce
|
2856
|
+
# reduce 203 omitted
|
2812
2857
|
|
2813
|
-
# reduce
|
2858
|
+
# reduce 204 omitted
|
2814
2859
|
|
2815
|
-
# reduce
|
2860
|
+
# reduce 205 omitted
|
2816
2861
|
|
2817
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2818
|
-
def
|
2862
|
+
module_eval(<<'.,.,', 'egrammar.ra', 716)
|
2863
|
+
def _reduce_206(val, _values, result)
|
2819
2864
|
result = Factory.PARAM(val[0][:value], val[2]) ; loc result, val[0]
|
2820
2865
|
result
|
2821
2866
|
end
|
2822
2867
|
.,.,
|
2823
2868
|
|
2824
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2825
|
-
def
|
2869
|
+
module_eval(<<'.,.,', 'egrammar.ra', 717)
|
2870
|
+
def _reduce_207(val, _values, result)
|
2826
2871
|
result = Factory.PARAM(val[0][:value]); loc result, val[0]
|
2827
2872
|
result
|
2828
2873
|
end
|
2829
2874
|
.,.,
|
2830
2875
|
|
2831
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2832
|
-
def
|
2876
|
+
module_eval(<<'.,.,', 'egrammar.ra', 720)
|
2877
|
+
def _reduce_208(val, _values, result)
|
2833
2878
|
result = val[1]; val[1].captures_rest
|
2834
2879
|
result
|
2835
2880
|
end
|
2836
2881
|
.,.,
|
2837
2882
|
|
2838
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2839
|
-
def
|
2883
|
+
module_eval(<<'.,.,', 'egrammar.ra', 723)
|
2884
|
+
def _reduce_209(val, _values, result)
|
2840
2885
|
val[1].type_expr(val[0]) ; result = val[1]
|
2841
2886
|
result
|
2842
2887
|
end
|
2843
2888
|
.,.,
|
2844
2889
|
|
2845
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2846
|
-
def
|
2890
|
+
module_eval(<<'.,.,', 'egrammar.ra', 726)
|
2891
|
+
def _reduce_210(val, _values, result)
|
2847
2892
|
result = val[0]
|
2848
2893
|
result
|
2849
2894
|
end
|
2850
2895
|
.,.,
|
2851
2896
|
|
2852
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2853
|
-
def
|
2897
|
+
module_eval(<<'.,.,', 'egrammar.ra', 727)
|
2898
|
+
def _reduce_211(val, _values, result)
|
2854
2899
|
result = val[0].access(val[2]) ; loc result, val[0], val[3]
|
2855
2900
|
result
|
2856
2901
|
end
|
2857
2902
|
.,.,
|
2858
2903
|
|
2859
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2860
|
-
def
|
2904
|
+
module_eval(<<'.,.,', 'egrammar.ra', 732)
|
2905
|
+
def _reduce_212(val, _values, result)
|
2861
2906
|
definition = Factory.TYPE_ASSIGNMENT(val[0], Factory.KEY_ENTRY(val[2], val[3]))
|
2862
2907
|
loc(definition, val[0], val[3])
|
2863
2908
|
result = add_definition(definition)
|
@@ -2866,8 +2911,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 721)
|
|
2866
2911
|
end
|
2867
2912
|
.,.,
|
2868
2913
|
|
2869
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2870
|
-
def
|
2914
|
+
module_eval(<<'.,.,', 'egrammar.ra', 737)
|
2915
|
+
def _reduce_213(val, _values, result)
|
2871
2916
|
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2].access(val[4]))
|
2872
2917
|
loc(definition, val[0], val[5])
|
2873
2918
|
result = add_definition(definition)
|
@@ -2876,8 +2921,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 726)
|
|
2876
2921
|
end
|
2877
2922
|
.,.,
|
2878
2923
|
|
2879
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2880
|
-
def
|
2924
|
+
module_eval(<<'.,.,', 'egrammar.ra', 742)
|
2925
|
+
def _reduce_214(val, _values, result)
|
2881
2926
|
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2])
|
2882
2927
|
loc(definition, val[0], val[2])
|
2883
2928
|
result = add_definition(definition)
|
@@ -2886,8 +2931,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 731)
|
|
2886
2931
|
end
|
2887
2932
|
.,.,
|
2888
2933
|
|
2889
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2890
|
-
def
|
2934
|
+
module_eval(<<'.,.,', 'egrammar.ra', 747)
|
2935
|
+
def _reduce_215(val, _values, result)
|
2891
2936
|
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2])
|
2892
2937
|
loc(definition, val[0], val[2])
|
2893
2938
|
result = add_definition(definition)
|
@@ -2896,8 +2941,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 736)
|
|
2896
2941
|
end
|
2897
2942
|
.,.,
|
2898
2943
|
|
2899
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2900
|
-
def
|
2944
|
+
module_eval(<<'.,.,', 'egrammar.ra', 752)
|
2945
|
+
def _reduce_216(val, _values, result)
|
2901
2946
|
definition = Factory.TYPE_ASSIGNMENT(val[0], val[2])
|
2902
2947
|
loc(definition, val[0], val[4])
|
2903
2948
|
result = add_definition(definition)
|
@@ -2906,15 +2951,15 @@ module_eval(<<'.,.,', 'egrammar.ra', 741)
|
|
2906
2951
|
end
|
2907
2952
|
.,.,
|
2908
2953
|
|
2909
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2910
|
-
def
|
2954
|
+
module_eval(<<'.,.,', 'egrammar.ra', 758)
|
2955
|
+
def _reduce_217(val, _values, result)
|
2911
2956
|
result = val[1]
|
2912
2957
|
result
|
2913
2958
|
end
|
2914
2959
|
.,.,
|
2915
2960
|
|
2916
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2917
|
-
def
|
2961
|
+
module_eval(<<'.,.,', 'egrammar.ra', 764)
|
2962
|
+
def _reduce_218(val, _values, result)
|
2918
2963
|
definition = Factory.TYPE_DEFINITION(val[1][:value], nil, val[3])
|
2919
2964
|
loc(definition, val[0], val[4])
|
2920
2965
|
result = add_definition(definition)
|
@@ -2923,8 +2968,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 753)
|
|
2923
2968
|
end
|
2924
2969
|
.,.,
|
2925
2970
|
|
2926
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2927
|
-
def
|
2971
|
+
module_eval(<<'.,.,', 'egrammar.ra', 769)
|
2972
|
+
def _reduce_219(val, _values, result)
|
2928
2973
|
definition = Factory.TYPE_DEFINITION(val[1][:value], val[3][:value], val[5])
|
2929
2974
|
loc(definition, val[0], val[6])
|
2930
2975
|
result = add_definition(definition)
|
@@ -2933,8 +2978,8 @@ module_eval(<<'.,.,', 'egrammar.ra', 758)
|
|
2933
2978
|
end
|
2934
2979
|
.,.,
|
2935
2980
|
|
2936
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2937
|
-
def
|
2981
|
+
module_eval(<<'.,.,', 'egrammar.ra', 778)
|
2982
|
+
def _reduce_220(val, _values, result)
|
2938
2983
|
fqn = Factory.fqn(val[0][:value])
|
2939
2984
|
loc(fqn, val[0])
|
2940
2985
|
fqn['offset'] += 1
|
@@ -2946,128 +2991,122 @@ module_eval(<<'.,.,', 'egrammar.ra', 767)
|
|
2946
2991
|
end
|
2947
2992
|
.,.,
|
2948
2993
|
|
2949
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2950
|
-
def
|
2994
|
+
module_eval(<<'.,.,', 'egrammar.ra', 789)
|
2995
|
+
def _reduce_221(val, _values, result)
|
2951
2996
|
result = Factory.RESERVED(val[0][:value]) ; loc result, val[0]
|
2952
2997
|
result
|
2953
2998
|
end
|
2954
2999
|
.,.,
|
2955
3000
|
|
2956
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2957
|
-
def
|
3001
|
+
module_eval(<<'.,.,', 'egrammar.ra', 790)
|
3002
|
+
def _reduce_222(val, _values, result)
|
2958
3003
|
result = Factory.RESERVED(val[0][:value]) ; loc result, val[0]
|
2959
3004
|
result
|
2960
3005
|
end
|
2961
3006
|
.,.,
|
2962
3007
|
|
2963
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2964
|
-
def
|
3008
|
+
module_eval(<<'.,.,', 'egrammar.ra', 796)
|
3009
|
+
def _reduce_223(val, _values, result)
|
2965
3010
|
result = Factory.LIST(val[1]); loc result, val[0], val[3]
|
2966
3011
|
result
|
2967
3012
|
end
|
2968
3013
|
.,.,
|
2969
3014
|
|
2970
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2971
|
-
def
|
3015
|
+
module_eval(<<'.,.,', 'egrammar.ra', 797)
|
3016
|
+
def _reduce_224(val, _values, result)
|
2972
3017
|
result = Factory.literal([]) ; loc result, val[0], val[1]
|
2973
3018
|
result
|
2974
3019
|
end
|
2975
3020
|
.,.,
|
2976
3021
|
|
2977
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2978
|
-
def
|
3022
|
+
module_eval(<<'.,.,', 'egrammar.ra', 798)
|
3023
|
+
def _reduce_225(val, _values, result)
|
2979
3024
|
result = Factory.LIST(val[1]); loc result, val[0], val[3]
|
2980
3025
|
result
|
2981
3026
|
end
|
2982
3027
|
.,.,
|
2983
3028
|
|
2984
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2985
|
-
def
|
3029
|
+
module_eval(<<'.,.,', 'egrammar.ra', 799)
|
3030
|
+
def _reduce_226(val, _values, result)
|
2986
3031
|
result = Factory.literal([]) ; loc result, val[0], val[1]
|
2987
3032
|
result
|
2988
3033
|
end
|
2989
3034
|
.,.,
|
2990
3035
|
|
2991
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2992
|
-
def
|
3036
|
+
module_eval(<<'.,.,', 'egrammar.ra', 802)
|
3037
|
+
def _reduce_227(val, _values, result)
|
2993
3038
|
result = Factory.HASH(val[1]); loc result, val[0], val[2]
|
2994
3039
|
result
|
2995
3040
|
end
|
2996
3041
|
.,.,
|
2997
3042
|
|
2998
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
2999
|
-
def
|
3043
|
+
module_eval(<<'.,.,', 'egrammar.ra', 803)
|
3044
|
+
def _reduce_228(val, _values, result)
|
3000
3045
|
result = Factory.HASH(val[1]); loc result, val[0], val[3]
|
3001
3046
|
result
|
3002
3047
|
end
|
3003
3048
|
.,.,
|
3004
3049
|
|
3005
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3006
|
-
def
|
3050
|
+
module_eval(<<'.,.,', 'egrammar.ra', 804)
|
3051
|
+
def _reduce_229(val, _values, result)
|
3007
3052
|
result = Factory.literal({}) ; loc result, val[0], val[1]
|
3008
3053
|
result
|
3009
3054
|
end
|
3010
3055
|
.,.,
|
3011
3056
|
|
3012
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3013
|
-
def
|
3057
|
+
module_eval(<<'.,.,', 'egrammar.ra', 807)
|
3058
|
+
def _reduce_230(val, _values, result)
|
3014
3059
|
result = [val[0]]
|
3015
3060
|
result
|
3016
3061
|
end
|
3017
3062
|
.,.,
|
3018
3063
|
|
3019
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3020
|
-
def
|
3064
|
+
module_eval(<<'.,.,', 'egrammar.ra', 808)
|
3065
|
+
def _reduce_231(val, _values, result)
|
3021
3066
|
result = val[0].push val[2]
|
3022
3067
|
result
|
3023
3068
|
end
|
3024
3069
|
.,.,
|
3025
3070
|
|
3026
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3027
|
-
def
|
3071
|
+
module_eval(<<'.,.,', 'egrammar.ra', 811)
|
3072
|
+
def _reduce_232(val, _values, result)
|
3028
3073
|
result = Factory.KEY_ENTRY(val[0], val[2]); loc result, val[1]
|
3029
3074
|
result
|
3030
3075
|
end
|
3031
3076
|
.,.,
|
3032
3077
|
|
3033
|
-
# reduce
|
3078
|
+
# reduce 233 omitted
|
3034
3079
|
|
3035
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3036
|
-
def
|
3080
|
+
module_eval(<<'.,.,', 'egrammar.ra', 815)
|
3081
|
+
def _reduce_234(val, _values, result)
|
3037
3082
|
result = Factory.literal(val[0][:value]) ; loc result, val[0]
|
3038
3083
|
result
|
3039
3084
|
end
|
3040
3085
|
.,.,
|
3041
3086
|
|
3042
|
-
# reduce
|
3087
|
+
# reduce 235 omitted
|
3043
3088
|
|
3044
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3045
|
-
def
|
3089
|
+
module_eval(<<'.,.,', 'egrammar.ra', 820)
|
3090
|
+
def _reduce_236(val, _values, result)
|
3046
3091
|
result = Factory.literal(val[0][:value]) ; loc result, val[0]
|
3047
3092
|
result
|
3048
3093
|
end
|
3049
3094
|
.,.,
|
3050
3095
|
|
3051
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3052
|
-
def
|
3096
|
+
module_eval(<<'.,.,', 'egrammar.ra', 823)
|
3097
|
+
def _reduce_237(val, _values, result)
|
3053
3098
|
result = [val[0]]
|
3054
3099
|
result
|
3055
3100
|
end
|
3056
3101
|
.,.,
|
3057
3102
|
|
3058
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3059
|
-
def
|
3103
|
+
module_eval(<<'.,.,', 'egrammar.ra', 824)
|
3104
|
+
def _reduce_238(val, _values, result)
|
3060
3105
|
result = Factory.ARGUMENTS(val[0], val[2])
|
3061
3106
|
result
|
3062
3107
|
end
|
3063
3108
|
.,.,
|
3064
3109
|
|
3065
|
-
# reduce 236 omitted
|
3066
|
-
|
3067
|
-
# reduce 237 omitted
|
3068
|
-
|
3069
|
-
# reduce 238 omitted
|
3070
|
-
|
3071
3110
|
# reduce 239 omitted
|
3072
3111
|
|
3073
3112
|
# reduce 240 omitted
|
@@ -3080,183 +3119,183 @@ module_eval(<<'.,.,', 'egrammar.ra', 813)
|
|
3080
3119
|
|
3081
3120
|
# reduce 244 omitted
|
3082
3121
|
|
3083
|
-
|
3084
|
-
|
3122
|
+
# reduce 245 omitted
|
3123
|
+
|
3124
|
+
# reduce 246 omitted
|
3125
|
+
|
3126
|
+
# reduce 247 omitted
|
3127
|
+
|
3128
|
+
module_eval(<<'.,.,', 'egrammar.ra', 841)
|
3129
|
+
def _reduce_248(val, _values, result)
|
3085
3130
|
result = Factory.literal(val[0][:value]) ; loc result, val[0]
|
3086
3131
|
result
|
3087
3132
|
end
|
3088
3133
|
.,.,
|
3089
3134
|
|
3090
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3091
|
-
def
|
3135
|
+
module_eval(<<'.,.,', 'egrammar.ra', 842)
|
3136
|
+
def _reduce_249(val, _values, result)
|
3092
3137
|
result = Factory.literal(val[0][:value]) ; loc result, val[0]
|
3093
3138
|
result
|
3094
3139
|
end
|
3095
3140
|
.,.,
|
3096
3141
|
|
3097
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3098
|
-
def
|
3142
|
+
module_eval(<<'.,.,', 'egrammar.ra', 844)
|
3143
|
+
def _reduce_250(val, _values, result)
|
3099
3144
|
result = Factory.STRING(val[0], *val[1]) ; loc result, val[0], val[1][-1]
|
3100
3145
|
result
|
3101
3146
|
end
|
3102
3147
|
.,.,
|
3103
3148
|
|
3104
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3105
|
-
def
|
3149
|
+
module_eval(<<'.,.,', 'egrammar.ra', 845)
|
3150
|
+
def _reduce_251(val, _values, result)
|
3106
3151
|
result = Factory.literal(val[0][:value]); loc result, val[0]
|
3107
3152
|
result
|
3108
3153
|
end
|
3109
3154
|
.,.,
|
3110
3155
|
|
3111
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3112
|
-
def
|
3156
|
+
module_eval(<<'.,.,', 'egrammar.ra', 846)
|
3157
|
+
def _reduce_252(val, _values, result)
|
3113
3158
|
result = Factory.literal(val[0][:value]); loc result, val[0]
|
3114
3159
|
result
|
3115
3160
|
end
|
3116
3161
|
.,.,
|
3117
3162
|
|
3118
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3119
|
-
def
|
3163
|
+
module_eval(<<'.,.,', 'egrammar.ra', 847)
|
3164
|
+
def _reduce_253(val, _values, result)
|
3120
3165
|
result = Factory.literal(val[0][:value]); loc result, val[0]
|
3121
3166
|
result
|
3122
3167
|
end
|
3123
3168
|
.,.,
|
3124
3169
|
|
3125
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3126
|
-
def
|
3170
|
+
module_eval(<<'.,.,', 'egrammar.ra', 848)
|
3171
|
+
def _reduce_254(val, _values, result)
|
3127
3172
|
result = [val[0]] + val[1]
|
3128
3173
|
result
|
3129
3174
|
end
|
3130
3175
|
.,.,
|
3131
3176
|
|
3132
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3133
|
-
def
|
3177
|
+
module_eval(<<'.,.,', 'egrammar.ra', 849)
|
3178
|
+
def _reduce_255(val, _values, result)
|
3134
3179
|
result = Factory.TEXT(val[0])
|
3135
3180
|
result
|
3136
3181
|
end
|
3137
3182
|
.,.,
|
3138
3183
|
|
3139
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3140
|
-
def
|
3184
|
+
module_eval(<<'.,.,', 'egrammar.ra', 852)
|
3185
|
+
def _reduce_256(val, _values, result)
|
3141
3186
|
result = [val[0]]
|
3142
3187
|
result
|
3143
3188
|
end
|
3144
3189
|
.,.,
|
3145
3190
|
|
3146
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3147
|
-
def
|
3191
|
+
module_eval(<<'.,.,', 'egrammar.ra', 853)
|
3192
|
+
def _reduce_257(val, _values, result)
|
3148
3193
|
result = [val[0]] + val[1]
|
3149
3194
|
result
|
3150
3195
|
end
|
3151
3196
|
.,.,
|
3152
3197
|
|
3153
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3154
|
-
def
|
3198
|
+
module_eval(<<'.,.,', 'egrammar.ra', 856)
|
3199
|
+
def _reduce_258(val, _values, result)
|
3155
3200
|
result = Factory.HEREDOC(val[0][:value], val[1]); loc result, val[0]
|
3156
3201
|
result
|
3157
3202
|
end
|
3158
3203
|
.,.,
|
3159
3204
|
|
3160
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3161
|
-
def
|
3162
|
-
result = Factory.SUBLOCATE(val[0], val[1]);
|
3205
|
+
module_eval(<<'.,.,', 'egrammar.ra', 859)
|
3206
|
+
def _reduce_259(val, _values, result)
|
3207
|
+
result = Factory.SUBLOCATE(val[0], val[1]); loc result, val[0]
|
3163
3208
|
result
|
3164
3209
|
end
|
3165
3210
|
.,.,
|
3166
3211
|
|
3167
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3168
|
-
def
|
3169
|
-
result = Factory.SUBLOCATE(val[0], val[1]);
|
3212
|
+
module_eval(<<'.,.,', 'egrammar.ra', 860)
|
3213
|
+
def _reduce_260(val, _values, result)
|
3214
|
+
result = Factory.SUBLOCATE(val[0], val[1]); loc result, val[0]
|
3170
3215
|
result
|
3171
3216
|
end
|
3172
3217
|
.,.,
|
3173
3218
|
|
3174
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3175
|
-
def
|
3219
|
+
module_eval(<<'.,.,', 'egrammar.ra', 863)
|
3220
|
+
def _reduce_261(val, _values, result)
|
3176
3221
|
result = Factory.EPP(val[1], val[2]); loc result, val[0]
|
3177
3222
|
result
|
3178
3223
|
end
|
3179
3224
|
.,.,
|
3180
3225
|
|
3181
|
-
# reduce
|
3226
|
+
# reduce 262 omitted
|
3182
3227
|
|
3183
|
-
# reduce
|
3228
|
+
# reduce 263 omitted
|
3184
3229
|
|
3185
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3186
|
-
def
|
3230
|
+
module_eval(<<'.,.,', 'egrammar.ra', 870)
|
3231
|
+
def _reduce_264(val, _values, result)
|
3187
3232
|
result = nil
|
3188
3233
|
result
|
3189
3234
|
end
|
3190
3235
|
.,.,
|
3191
3236
|
|
3192
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3193
|
-
def
|
3237
|
+
module_eval(<<'.,.,', 'egrammar.ra', 871)
|
3238
|
+
def _reduce_265(val, _values, result)
|
3194
3239
|
result = []
|
3195
3240
|
result
|
3196
3241
|
end
|
3197
3242
|
.,.,
|
3198
3243
|
|
3199
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3200
|
-
def
|
3244
|
+
module_eval(<<'.,.,', 'egrammar.ra', 872)
|
3245
|
+
def _reduce_266(val, _values, result)
|
3201
3246
|
result = val[1]
|
3202
3247
|
result
|
3203
3248
|
end
|
3204
3249
|
.,.,
|
3205
3250
|
|
3206
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3207
|
-
def
|
3251
|
+
module_eval(<<'.,.,', 'egrammar.ra', 875)
|
3252
|
+
def _reduce_267(val, _values, result)
|
3208
3253
|
result = Factory.RENDER_STRING(val[0][:value]); loc result, val[0]
|
3209
3254
|
result
|
3210
3255
|
end
|
3211
3256
|
.,.,
|
3212
3257
|
|
3213
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3214
|
-
def
|
3258
|
+
module_eval(<<'.,.,', 'egrammar.ra', 876)
|
3259
|
+
def _reduce_268(val, _values, result)
|
3215
3260
|
result = Factory.RENDER_EXPR(val[1]); loc result, val[0], val[2]
|
3216
3261
|
result
|
3217
3262
|
end
|
3218
3263
|
.,.,
|
3219
3264
|
|
3220
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3221
|
-
def
|
3265
|
+
module_eval(<<'.,.,', 'egrammar.ra', 877)
|
3266
|
+
def _reduce_269(val, _values, result)
|
3222
3267
|
result = Factory.RENDER_EXPR(Factory.block_or_expression(val[2], val[1], val[3])); loc result, val[0], val[4]
|
3223
3268
|
result
|
3224
3269
|
end
|
3225
3270
|
.,.,
|
3226
3271
|
|
3227
|
-
# reduce
|
3272
|
+
# reduce 270 omitted
|
3228
3273
|
|
3229
|
-
# reduce
|
3274
|
+
# reduce 271 omitted
|
3230
3275
|
|
3231
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3232
|
-
def
|
3276
|
+
module_eval(<<'.,.,', 'egrammar.ra', 883)
|
3277
|
+
def _reduce_272(val, _values, result)
|
3233
3278
|
result = Factory.QREF(val[0][:value]) ; loc result, val[0]
|
3234
3279
|
result
|
3235
3280
|
end
|
3236
3281
|
.,.,
|
3237
3282
|
|
3238
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3239
|
-
def
|
3283
|
+
module_eval(<<'.,.,', 'egrammar.ra', 886)
|
3284
|
+
def _reduce_273(val, _values, result)
|
3240
3285
|
result = Factory.literal(val[0][:value]); loc result, val[0]
|
3241
3286
|
result
|
3242
3287
|
end
|
3243
3288
|
.,.,
|
3244
3289
|
|
3245
|
-
# reduce
|
3290
|
+
# reduce 274 omitted
|
3246
3291
|
|
3247
|
-
module_eval(<<'.,.,', 'egrammar.ra',
|
3248
|
-
def
|
3292
|
+
module_eval(<<'.,.,', 'egrammar.ra', 892)
|
3293
|
+
def _reduce_275(val, _values, result)
|
3249
3294
|
result = nil
|
3250
3295
|
result
|
3251
3296
|
end
|
3252
3297
|
.,.,
|
3253
3298
|
|
3254
|
-
# reduce 273 omitted
|
3255
|
-
|
3256
|
-
# reduce 274 omitted
|
3257
|
-
|
3258
|
-
# reduce 275 omitted
|
3259
|
-
|
3260
3299
|
# reduce 276 omitted
|
3261
3300
|
|
3262
3301
|
# reduce 277 omitted
|
@@ -3299,8 +3338,14 @@ module_eval(<<'.,.,', 'egrammar.ra', 881)
|
|
3299
3338
|
|
3300
3339
|
# reduce 296 omitted
|
3301
3340
|
|
3302
|
-
|
3303
|
-
|
3341
|
+
# reduce 297 omitted
|
3342
|
+
|
3343
|
+
# reduce 298 omitted
|
3344
|
+
|
3345
|
+
# reduce 299 omitted
|
3346
|
+
|
3347
|
+
module_eval(<<'.,.,', 'egrammar.ra', 923)
|
3348
|
+
def _reduce_300(val, _values, result)
|
3304
3349
|
result = nil
|
3305
3350
|
result
|
3306
3351
|
end
|
@@ -3311,6 +3356,6 @@ def _reduce_none(val, _values, result)
|
|
3311
3356
|
end
|
3312
3357
|
|
3313
3358
|
end # class Parser
|
3314
|
-
|
3315
|
-
|
3316
|
-
|
3359
|
+
end # module Parser
|
3360
|
+
end # module Pops
|
3361
|
+
end # module Puppet
|