summaryrefslogtreecommitdiff
path: root/test/ruby
AgeCommit message (Expand)Author
2019-09-25Changed numbered parameters semanticsNobuyoshi Nakada
2019-09-24Make numbered parameters exclusive in a scopeNobuyoshi Nakada
2019-09-24Changed numbered parameter prefixNobuyoshi Nakada
2019-09-23Make public_send and rb_f_send handle keyword argument separationJeremy Evans
2019-09-21Make Kernel#{Pathname,BigDecimal,Complex} return argument if given correct typeJeremy Evans
2019-09-21Fix Module#class_variables for singleton classes of classes/modulesJeremy Evans
2019-09-21test/ruby/test_assignment.rb: use bug number for assert messageYusuke Endoh
2019-09-20Handle keyword argument separation for Enumerator#sizeJeremy Evans
2019-09-20Make passing empty keywords to dig pass empty keywords to next dig methodJeremy Evans
2019-09-20Allows calling a private method only with bare `self`Nobuyoshi Nakada
2019-09-20Allow calling a private accessor with `self.`Nobuyoshi Nakada
2019-09-20Allow calling a private method with `self.`Dylan Thacker-Smith
2019-09-19Separate Time#inspect from to_s and show subsec [Feature #15958]NARUSE, Yui
2019-09-19Fixed reserved numbered parameter warningNobuyoshi Nakada
2019-09-19DEBUG: cxxanyargsNobuyoshi Nakada
2019-09-19DEBUGNobuyoshi Nakada
2019-09-18Add and fix some keyword testsJeremy Evans
2019-09-17Fix keyword argument separation issues with sym procs when using refinementsJeremy Evans
2019-09-17Pass keyword argument flag when rb_call_super_kw calls method_missingJeremy Evans
2019-09-15Comment lines can be placed between fluent dot nowNobuyoshi Nakada
2019-09-13Correctly handle keywords for Method#call for cfuncs, send, and attr_*Jeremy Evans
2019-09-12Document and test Enumerator.produceAkinori MUSHA
2019-09-11Emit missing keyword argument separation warnings for define_methodJeremy Evans
2019-09-09Make test-all and test-spec runnable on AndroidYusuke Endoh
2019-09-08Fix invalid keyword argument separation warning for delegating callsJeremy Evans
2019-09-08Add keyword argument separation tests for implicit/explicit super callsJeremy Evans
2019-09-07compile.c (compile_list): emit newarraykwsplat only at the last chunkYusuke Endoh
2019-09-07Rename NODE_ARRAY to NODE_LIST to reflect its actual use casesYusuke Endoh
2019-09-06Convert keyword argument to required positional hash argument for Class#new, ...Jeremy Evans
2019-09-06Try shrinking tested VM stack maxTakashi Kokubun
2019-09-05Convert empty keyword hash to required positional argument and warn for metho...Jeremy Evans
2019-09-05Convert empty keyword hash to required positional argument and warn for sym p...Jeremy Evans
2019-09-05Convert empty keyword hash to required positional argument and warn for lambd...Jeremy Evans
2019-09-05Convert empty keyword hash to required positional argument and warnJeremy Evans
2019-09-05Always remove empty keyword hashes when calling methodsJeremy Evans
2019-09-05Add a keyword-to-last-hash warning for some case of define_method methodYusuke Endoh
2019-09-05define_method should not drop the empty keyword hashYusuke Endoh
2019-09-05vm_call_bmethod should not drop the empty keyword hashYusuke Endoh
2019-09-05vm_call_opt_send should not drop the empty keyword hashYusuke Endoh
2019-09-05test_method_missing_kwsplat should call the target directlyYusuke Endoh
2019-09-05Ignore an empty keyword splat for attr_reader/writer methodsYusuke Endoh
2019-09-05C method should accept a keyword hash (for compatibility with 2.6)Yusuke Endoh
2019-09-05CALLER_SETUP_ARG removes an empty keyword hash from argvYusuke Endoh
2019-09-05Fix passing keywords without splats to sym procs, define_method, and method_m...Jeremy Evans
2019-09-05Make Symbol#to_proc calls handle keyword argumentsJeremy Evans
2019-09-05Propagate kw_splat informationYusuke Endoh
2019-09-05Fix code locations of array node inside hash node when multiple kw splatsJeremy Evans
2019-09-05Make m(**{}) mean call without keywordsJeremy Evans
2019-09-05Add tests for `File.absolute_path?`David Rodríguez
2019-09-04Implement Enumerator::Lazy#eager [Feature #15901]Akinori MUSHA