Server IP : 111.118.215.189 / Your IP : 18.217.207.112 Web Server : Apache System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : a1673wkz ( 2475) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /usr/share/ruby/vendor_ruby/puppet/pops/migration/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
# This class defines the private API of the MigrationChecker support. # @api private # class Puppet::Pops::Migration::MigrationChecker def initialize() end # Produces a hash of available migrations; a map from a symbolic name in string form to a brief description. def available_migrations() { '3.8/4.0' => '3.8 future parser to 4.0 language migrations'} end # For 3.8/4.0 def report_ambiguous_integer(o) end # For 3.8/4.0 def report_ambiguous_float(o) end # For 3.8/4.0 def report_empty_string_true(value, o) end # For 3.8/4.0 def report_uc_bareword_type(value, o) end # For 3.8/4.0 def report_equality_type_mismatch(left, right, o) end # For 3.8/4.0 def report_option_type_mismatch(test_value, option_value, option_expr, matching_expr) end # For 3.8/4.0 def report_in_expression(o) end # For 3.8/4.0 def report_array_last_in_block(o) end end