# New Ticket Created by "Brian S. Julin" # Please include the string: [perl #126708] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=126708 >
This is a regression since star09 which make Grammar more tedious to subclass. (01:52:42 PM) skids: m: grammar foo { rule TOP { . } }; foo.parse("foo",:subclass_arg_to_ignore) (01:53:02 PM) camelia: rakudo-moar : OUTPUT«Unexpected named parameter 'subclass_arg_to_ignore' passed in block <unit> at /tmp/cUwyy7Hppz:1» (01:53:12 PM) skids: star: grammar foo { rule TOP { . } }; foo.parse("foo",:subclass_arg_to_ignore) (01:53:12 PM) camelia: star-m 2015.09: ( no output ) (01:53:34 PM) skids: That was breaking Grammar::BNF but I worked around it.