Method: CodeWeb::CodeParser#initialize
- Defined in:
- lib/code_web/code_parser.rb
#initialize ⇒ CodeParser
Returns a new instance of CodeParser.
17 18 19 20 21 22 23 |
# File 'lib/code_web/code_parser.rb', line 17 def initialize @cur_method=[] @indent = 0 @file_count = 0 @exit_on_error = false @method_cache = CodeWeb::MethodCache.new end |