# New Ticket Created by Leopold Toetsch # Please include the string: [perl #37371] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=37371 >
During opcode cleanup the find_word_boundary opcode ceased to exist (there was no is_word_boundary). We probably want to have this as a builtin "character class". 1) create a new enum entry in include/parrot/cclass.h enum_cclass_word_boundary 2) implement it inside charset/*.c: is_cclass / find_cclass / find_not_cclass, by calling these functions with enum_cclass_word as char class. See also perldoc perlre /\\b leo