luthor 0.2.0

A collection of lexers for various languages/formats, and the tools required to build them.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
class Ruby
  def method(argument)
    # comment
    ["ruby"].each do |string|
      variable = 'string'
      another_variable=1
      method_call(argument = false, another_argument)
      another_method_call
      hash[:symbol_1234?] = { key: value }
    end
  end
end