summaryrefslogtreecommitdiffhomepage
path: root/lib/yard/handlers/c/mruby_method_handler.rb
blob: 01fb345fc5e228cace81bd8108a54c0ceb0d5608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module YARD::Handlers::C
  class MRubyMethodHandler < MRubyBase
    MATCH1 = /mrb_define_method\s*
      \(
      \s*\w+\s*,
      \s*(\w+)\s*,
      \s*"(\w+)"\s*,
      \s*(\w+)\s*,
    /mx

    handles MATCH1
    statement_class BodyStatement

    process do
      statement.source.scan(MATCH1) do |var_name, name, func_name|
        handle_method(nil, var_name, name, func_name)
      end
    end

  end
end