unknown_global_method: src: "system('echo date')" res: "Unknown method 'system(\"echo date\")'." bad_argument_types: src: "strftime(34,'ffoo')" res: "Unknown method 'strftime(34, \"ffoo\")'." zero_div: src: "1/(id-10)" tem: "(1/(var1.zip-10) rescue nil)" res: "" looping: src: "while(true) do puts 'flood' end" res: 'Bug! Unknown node-type :while to RubyLess::RubyLessProcessor' add_two_strings: src: "name + 14" res: "'var1.name' does not respond to '+(Number)'." two_arguments_in_hash: src: "dictionary[:one, :two]" res: "'get_dict' does not respond to '[](Symbol, Symbol)'." number_argument: src: "dictionary[43]" res: "'get_dict' does not respond to '[](Number)'." string_argument: src: "dictionary[spouse.name]" res: "'get_dict' does not respond to '[](String)'." symbol_type_not_used_out_of_helper: src: "node.foo" tem: "'var1' does not respond to 'foo()'." optional_arguments_with_dynamic_string: src: "spouse.width(\"nice#{spouse.name}\" => 'pv')" tem: "Invalid key type for hash (should be a literal value, was :dstr)" optional_arguments_bad_type: src: "width(:mode => 12)" res: "Unknown method 'width({:mode => 12})'." optional_arguments_bad_argument: src: "width(:xyz => 'pv')" res: "Unknown method 'width({:xyz => \"pv\"})'."