module TomParse

Public Class Methods

parse(comment, parse_options={}) click to toggle source

Main interface to parser.

comment - code comment [String]

# File lib/tomparse.rb, line 11
def self.parse(comment, parse_options={})
  TomDoc.new(comment, parse_options)
end