Class: YARD::Parser::Ruby::RipperParser

Inherits:
Ripper
  • Object
show all
Defined in:
lib/yard/parser/ruby/ruby_parser.rb

Overview

Internal parser class

Since:

  • 0.5.6

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, filename, *args) ⇒ RipperParser

Returns a new instance of RipperParser.

Since:

  • 0.5.6



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 32

def initialize(source, filename, *args)
  super
  @last_ns_token = nil
  @file = filename
  @source = source
  @tokens = []
  @comments = {}
  @comments_range = {}
  @comments_flags = {}
  @heredoc_tokens = nil
  @heredoc_state = nil
  @map = {}
  @ns_charno = 0
  @list = []
  @charno = 0
  @shebang_line = nil
  @encoding_line = nil
  @frozen_string_line = nil
  @file_encoding = nil
  @newline = true
  @percent_ary = nil
end

Instance Attribute Details

#astObject (readonly) Also known as: root

Since:

  • 0.5.6



28
29
30
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 28

def ast
  @ast
end

#charnoObject (readonly)

Since:

  • 0.5.6



28
29
30
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 28

def charno
  @charno
end

#commentsObject (readonly)

Since:

  • 0.5.6



28
29
30
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 28

def comments
  @comments
end

#encoding_lineObject (readonly)

Since:

  • 0.5.6



29
30
31
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 29

def encoding_line
  @encoding_line
end

#fileObject (readonly)

Since:

  • 0.5.6



28
29
30
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 28

def file
  @file
end

#frozen_string_lineObject (readonly)

Since:

  • 0.5.6



29
30
31
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 29

def frozen_string_line
  @frozen_string_line
end

#shebang_lineObject (readonly)

Since:

  • 0.5.6



29
30
31
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 29

def shebang_line
  @shebang_line
end

#tokensObject (readonly)

Since:

  • 0.5.6



28
29
30
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 28

def tokens
  @tokens
end

Instance Method Details

#enumeratorObject

Since:

  • 0.5.6



64
65
66
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 64

def enumerator
  ast.children
end

#file_encodingObject

Since:

  • 0.5.6



68
69
70
71
72
73
74
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 68

def file_encoding
  return nil unless defined?(::Encoding)
  return @file_encoding if @file_encoding
  return Encoding.default_internal unless @encoding_line
  match = @encoding_line.match(SourceParser::ENCODING_LINE)
  @file_encoding = match.captures.last if match
end

#parseObject

Since:

  • 0.5.6



55
56
57
58
59
60
61
62
# File 'lib/yard/parser/ruby/ruby_parser.rb', line 55

def parse
  @ast = super
  @ast.full_source = @source
  @ast.file = @file
  freeze_tree
  insert_comments
  self
end