1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
module YARD::MRuby::Handlers::C::Source class InitHandler < Base MATCH1 = /mrb_\w+_gem_init\s*\(/mx MATCH2 = /mrb_init_/mx handles MATCH1 handles MATCH2 statement_class ToplevelStatement process do parse_block end end end