summaryrefslogtreecommitdiffhomepage
path: root/lib/yard/mruby/handlers/c/source/init_handler.rb
blob: 43115a0bf6e02950224e1dbc5c34f03f4c987005 (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_\w\s*\(/mx

    handles MATCH1
    handles MATCH2
    statement_class ToplevelStatement

    process do
      parse_block
    end

  end
end