summaryrefslogtreecommitdiffhomepage
path: root/lib/yard/mruby/handlers/c/source/init_handler.rb
blob: a4395c71b429a0092958e3c5375f840eb6e7729e (plain)
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