Class: RuboCop::ProcessedSource
- Inherits:
-
Object
- Object
- RuboCop::ProcessedSource
- Defined in:
- lib/rubocop/processed_source.rb
Overview
ProcessedSource contains objects which are generated by Parser and other information such as disabled lines for cops. It also provides a convenient way to access source lines.
Constant Summary collapse
- STRING_SOURCE_NAME =
'(string)'.freeze
Instance Attribute Summary collapse
-
#ast ⇒ Object
readonly
Returns the value of attribute ast.
-
#buffer ⇒ Object
readonly
Returns the value of attribute buffer.
-
#comments ⇒ Object
readonly
Returns the value of attribute comments.
-
#diagnostics ⇒ Object
readonly
Returns the value of attribute diagnostics.
-
#parser_error ⇒ Object
readonly
Returns the value of attribute parser_error.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#raw_source ⇒ Object
readonly
Returns the value of attribute raw_source.
-
#ruby_version ⇒ Object
readonly
Returns the value of attribute ruby_version.
-
#tokens ⇒ Object
readonly
Returns the value of attribute tokens.
Class Method Summary collapse
Instance Method Summary collapse
- #[](*args) ⇒ Object
- #ast_with_comments ⇒ Object
-
#checksum ⇒ Object
Raw source checksum for tracking infinite loops.
- #comment_config ⇒ Object
- #disabled_line_ranges ⇒ Object
-
#initialize(source, ruby_version, path = nil) ⇒ ProcessedSource
constructor
A new instance of ProcessedSource.
-
#lines ⇒ Object
Returns the source lines, line break characters removed, excluding a possible __END__ and everything that comes after.
- #valid_syntax? ⇒ Boolean
Constructor Details
#initialize(source, ruby_version, path = nil) ⇒ ProcessedSource
Returns a new instance of ProcessedSource.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/rubocop/processed_source.rb', line 23 def initialize(source, ruby_version, path = nil) # In Ruby 2, source code encoding defaults to UTF-8. We follow the same # principle regardless of which Ruby version we're running under. # Encoding comments will override this setting. unless source.encoding == Encoding::UTF_8 source.force_encoding(Encoding::UTF_8) end @raw_source = source @path = path @diagnostics = [] @ruby_version = ruby_version parse(source, ruby_version) end |
Instance Attribute Details
#ast ⇒ Object (readonly)
Returns the value of attribute ast.
13 14 15 |
# File 'lib/rubocop/processed_source.rb', line 13 def ast @ast end |
#buffer ⇒ Object (readonly)
Returns the value of attribute buffer.
13 14 15 |
# File 'lib/rubocop/processed_source.rb', line 13 def buffer @buffer end |
#comments ⇒ Object (readonly)
Returns the value of attribute comments.
13 14 15 |
# File 'lib/rubocop/processed_source.rb', line 13 def comments @comments end |
#diagnostics ⇒ Object (readonly)
Returns the value of attribute diagnostics.
13 14 15 |
# File 'lib/rubocop/processed_source.rb', line 13 def diagnostics @diagnostics end |
#parser_error ⇒ Object (readonly)
Returns the value of attribute parser_error.
13 14 15 |
# File 'lib/rubocop/processed_source.rb', line 13 def parser_error @parser_error end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
13 14 15 |
# File 'lib/rubocop/processed_source.rb', line 13 def path @path end |
#raw_source ⇒ Object (readonly)
Returns the value of attribute raw_source.
13 14 15 |
# File 'lib/rubocop/processed_source.rb', line 13 def raw_source @raw_source end |
#ruby_version ⇒ Object (readonly)
Returns the value of attribute ruby_version.
13 14 15 |
# File 'lib/rubocop/processed_source.rb', line 13 def ruby_version @ruby_version end |
#tokens ⇒ Object (readonly)
Returns the value of attribute tokens.
13 14 15 |
# File 'lib/rubocop/processed_source.rb', line 13 def tokens @tokens end |
Class Method Details
Instance Method Details
#[](*args) ⇒ Object
67 68 69 |
# File 'lib/rubocop/processed_source.rb', line 67 def [](*args) lines[*args] end |
#ast_with_comments ⇒ Object
47 48 49 50 |
# File 'lib/rubocop/processed_source.rb', line 47 def ast_with_comments return if !ast || !comments @ast_with_comments ||= Parser::Source::Comment.associate(ast, comments) end |
#checksum ⇒ Object
Raw source checksum for tracking infinite loops.
77 78 79 |
# File 'lib/rubocop/processed_source.rb', line 77 def checksum Digest::MD5.hexdigest(@raw_source) end |
#comment_config ⇒ Object
39 40 41 |
# File 'lib/rubocop/processed_source.rb', line 39 def comment_config @comment_config ||= CommentConfig.new(self) end |
#disabled_line_ranges ⇒ Object
43 44 45 |
# File 'lib/rubocop/processed_source.rb', line 43 def disabled_line_ranges comment_config.cop_disabled_line_ranges end |
#lines ⇒ Object
Returns the source lines, line break characters removed, excluding a possible __END__ and everything that comes after.
54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/rubocop/processed_source.rb', line 54 def lines @lines ||= begin all_lines = @buffer.source_lines last_token_line = tokens.any? ? tokens.last.pos.line : all_lines.size result = [] all_lines.each_with_index do |line, ix| break if ix >= last_token_line && line == '__END__' result << line end result end end |
#valid_syntax? ⇒ Boolean
71 72 73 74 |
# File 'lib/rubocop/processed_source.rb', line 71 def valid_syntax? return false if @parser_error @diagnostics.none? { |d| [:error, :fatal].include?(d.level) } end |