Class: YARD::Parser::Ruby::RipperParser
- Inherits:
-
Ripper
- Object
- Ripper
- YARD::Parser::Ruby::RipperParser
- Defined in:
- lib/yard/parser/ruby/ruby_parser.rb
Overview
Internal parser class
Instance Attribute Summary collapse
- #ast ⇒ Object (also: #root) readonly
- #charno ⇒ Object readonly
- #comments ⇒ Object readonly
- #encoding_line ⇒ Object readonly
- #file ⇒ Object readonly
- #shebang_line ⇒ Object readonly
- #tokens ⇒ Object readonly
Instance Method Summary collapse
- #enumerator ⇒ Object
-
#initialize(source, filename, *args) ⇒ RipperParser
constructor
A new instance of RipperParser.
- #parse ⇒ Object
Constructor Details
#initialize(source, filename, *args) ⇒ RipperParser
Returns a new instance of RipperParser.
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 29 def initialize(source, filename, *args) super @last_ns_token = nil @file = filename @source = source @tokens = [] @comments = {} @comments_flags = {} @heredoc_tokens = [] @map = {} @ns_charno = 0 @list = [] @charno = 0 @groups = [] @shebang_line = nil @encoding_line = nil end |
Instance Attribute Details
#ast ⇒ Object (readonly) Also known as: root
25 26 27 |
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 25 def ast @ast end |
#charno ⇒ Object (readonly)
25 26 27 |
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 25 def charno @charno end |
#comments ⇒ Object (readonly)
25 26 27 |
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 25 def comments @comments end |
#encoding_line ⇒ Object (readonly)
26 27 28 |
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 26 def encoding_line @encoding_line end |
#file ⇒ Object (readonly)
25 26 27 |
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 25 def file @file end |
#shebang_line ⇒ Object (readonly)
26 27 28 |
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 26 def shebang_line @shebang_line end |
#tokens ⇒ Object (readonly)
25 26 27 |
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 25 def tokens @tokens end |
Instance Method Details
#enumerator ⇒ Object
56 57 58 |
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 56 def enumerator ast.children end |
#parse ⇒ Object
47 48 49 50 51 52 53 54 |
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 47 def parse @ast = super @ast.full_source = @source @ast.file = @file freeze_tree insert_comments self end |