PATH:
opt
/
alt
/
ruby34
/
share
/
ruby
/
syntax_suggest
# frozen_string_literal: true module SyntaxSuggest # This class is responsible for generating initial code blocks # that will then later be expanded. # # The biggest concern when guessing code blocks, is accidentally # grabbing one that contains only an "end". In this example: # # def dog # begonn # misspelled `begin` # puts "bark" # end # end # # The following lines would be matched (from bottom to top): # # 1) end # # 2) puts "bark" # end # # 3) begonn # puts "bark" # end # # At this point it has no where else to expand, and it will yield this inner # code as a block class ParseBlocksFromIndentLine attr_reader :code_lines def initialize(code_lines:) @code_lines = code_lines end # Builds blocks from bottom up def each_neighbor_block(target_line) scan = AroundBlockScan.new(code_lines: code_lines, block: CodeBlock.new(lines: target_line)) .force_add_empty .force_add_hidden .scan_while { |line| line.indent >= target_line.indent } neighbors = scan.code_block.lines block = CodeBlock.new(lines: neighbors) if neighbors.length <= 2 || block.valid? yield block else until neighbors.empty? lines = [neighbors.pop] while (block = CodeBlock.new(lines: lines)) && block.invalid? && neighbors.any? lines.prepend neighbors.pop end yield block if block end end end end end
[-] lex_value.rb
[edit]
[-] ripper_errors.rb
[edit]
[-] scan_history.rb
[edit]
[-] priority_engulf_queue.rb
[edit]
[-] display_code_with_line_numbers.rb
[edit]
[-] priority_queue.rb
[edit]
[-] version.rb
[edit]
[-] display_invalid_blocks.rb
[edit]
[-] code_line.rb
[edit]
[-] parse_blocks_from_indent_line.rb
[edit]
[-] api.rb
[edit]
[-] clean_document.rb
[edit]
[-] lex_all.rb
[edit]
[-] mini_stringio.rb
[edit]
[-] unvisited_lines.rb
[edit]
[-] core_ext.rb
[edit]
[+]
..
[-] code_block.rb
[edit]
[-] capture_code_context.rb
[edit]
[+]
capture
[-] code_frontier.rb
[edit]
[-] explain_syntax.rb
[edit]
[-] block_expand.rb
[edit]
[-] left_right_lex_count.rb
[edit]
[-] around_block_scan.rb
[edit]
[-] cli.rb
[edit]
[-] code_search.rb
[edit]
[-] pathname_from_message.rb
[edit]