mirror of
				https://gitea.invidious.io/iv-org/shard-ameba.git
				synced 2024-08-15 00:53:29 +00:00 
			
		
		
		
	Apply suggestions from code review
This commit is contained in:
		
							parent
							
								
									d51ef27d54
								
							
						
					
					
						commit
						b7bb282b99
					
				
					 5 changed files with 26 additions and 31 deletions
				
			
		| 
						 | 
				
			
			@ -19,8 +19,7 @@ module Ameba
 | 
			
		|||
      def initialize(path, issues_by_iteration, loop_start = -1)
 | 
			
		||||
        root_cause =
 | 
			
		||||
          issues_by_iteration[loop_start..-1]
 | 
			
		||||
            .map(&.map(&.rule.name).uniq!.join(", "))
 | 
			
		||||
            .join(" -> ")
 | 
			
		||||
            .join(" -> ", &.map(&.rule.name).uniq!.join(", "))
 | 
			
		||||
 | 
			
		||||
        message = String.build do |io|
 | 
			
		||||
          io << "Infinite loop"
 | 
			
		||||
| 
						 | 
				
			
			@ -210,7 +209,7 @@ module Ameba
 | 
			
		|||
    private def check_for_infinite_loop(source, corrected_issues, processed_sources)
 | 
			
		||||
      checksum = Digest::SHA1.hexdigest(source.code)
 | 
			
		||||
 | 
			
		||||
      if (loop_start = processed_sources.index(checksum))
 | 
			
		||||
      if loop_start = processed_sources.index(checksum)
 | 
			
		||||
        raise InfiniteCorrectionLoopError.new(
 | 
			
		||||
          source.path,
 | 
			
		||||
          corrected_issues,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -11,9 +11,6 @@ module Ameba
 | 
			
		|||
    # Crystal code (content of a source file).
 | 
			
		||||
    getter code : String
 | 
			
		||||
 | 
			
		||||
    @lines : Array(String)?
 | 
			
		||||
    @ast : Crystal::ASTNode?
 | 
			
		||||
 | 
			
		||||
    # Creates a new source by `code` and `path`.
 | 
			
		||||
    #
 | 
			
		||||
    # For example:
 | 
			
		||||
| 
						 | 
				
			
			@ -50,9 +47,7 @@ module Ameba
 | 
			
		|||
    # source.lines # => ["a = 1", "b = 2"]
 | 
			
		||||
    # ```
 | 
			
		||||
    #
 | 
			
		||||
    def lines : Array(String)
 | 
			
		||||
      @lines ||= code.split('\n')
 | 
			
		||||
    end
 | 
			
		||||
    getter lines : Array(String) { code.split('\n') }
 | 
			
		||||
 | 
			
		||||
    # Returns AST nodes constructed by `Crystal::Parser`.
 | 
			
		||||
    #
 | 
			
		||||
| 
						 | 
				
			
			@ -61,8 +56,7 @@ module Ameba
 | 
			
		|||
    # source.ast
 | 
			
		||||
    # ```
 | 
			
		||||
    #
 | 
			
		||||
    def ast : Crystal::ASTNode
 | 
			
		||||
      @ast ||=
 | 
			
		||||
    getter ast : Crystal::ASTNode do
 | 
			
		||||
      Crystal::Parser.new(code)
 | 
			
		||||
        .tap(&.wants_doc = true)
 | 
			
		||||
        .tap(&.filename = path)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -8,7 +8,7 @@ class Ameba::Source
 | 
			
		|||
 | 
			
		||||
    def initialize(code : String)
 | 
			
		||||
      @rewriter = Rewriter.new(code)
 | 
			
		||||
      @line_sizes = code.lines(chomp: false).map(&.size)
 | 
			
		||||
      @line_sizes = code.each_line(chomp: false).map(&.size).to_a
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
    # Replaces the code of the given range with *content*.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -59,9 +59,9 @@ class Ameba::Source
 | 
			
		|||
  # The updates are organized in a tree, according to the ranges they act on
 | 
			
		||||
  # (where children are strictly contained by their parent).
 | 
			
		||||
  class Rewriter
 | 
			
		||||
    getter code
 | 
			
		||||
    getter code : String
 | 
			
		||||
 | 
			
		||||
    def initialize(@code : String)
 | 
			
		||||
    def initialize(@code)
 | 
			
		||||
      @action_root = Rewriter::Action.new(0, code.size)
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -73,15 +73,17 @@ class Ameba::Source::Rewriter
 | 
			
		|||
      family = analyse_hierarchy(action)
 | 
			
		||||
      sibling_left, sibling_right = family[:sibling_left], family[:sibling_right]
 | 
			
		||||
 | 
			
		||||
      if (fusible = family[:fusible])
 | 
			
		||||
      if fusible = family[:fusible]
 | 
			
		||||
        child = family[:child]
 | 
			
		||||
        child ||= [] of Action
 | 
			
		||||
        fuse_deletions(action, fusible, sibling_left + child + sibling_right)
 | 
			
		||||
      else
 | 
			
		||||
        extra_sibling = if (parent = family[:parent])
 | 
			
		||||
        extra_sibling =
 | 
			
		||||
          case
 | 
			
		||||
          when parent = family[:parent]
 | 
			
		||||
            # action should be a descendant of one of the children
 | 
			
		||||
            parent.do_combine(action)
 | 
			
		||||
                        elsif (child = family[:child])
 | 
			
		||||
          when child = family[:child]
 | 
			
		||||
            # or it should become the parent of some of the children,
 | 
			
		||||
            action.with(children: child).combine_children(action.children)
 | 
			
		||||
          else
 | 
			
		||||
| 
						 | 
				
			
			@ -102,8 +104,8 @@ class Ameba::Source::Rewriter
 | 
			
		|||
    protected def fuse_deletions(action, fusible, other_siblings)
 | 
			
		||||
      without_fusible = self.with(children: other_siblings)
 | 
			
		||||
      fusible = [action] + fusible
 | 
			
		||||
      fused_begin_pos = fusible.map(&.begin_pos).min
 | 
			
		||||
      fused_end_pos = fusible.map(&.end_pos).max
 | 
			
		||||
      fused_begin_pos = fusible.min_of(&.begin_pos)
 | 
			
		||||
      fused_end_pos = fusible.max_of(&.end_pos)
 | 
			
		||||
      fused_deletion = action.with(begin_pos: fused_begin_pos, end_pos: fused_end_pos)
 | 
			
		||||
      without_fusible.do_combine(fused_deletion)
 | 
			
		||||
    end
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue