类 SyntaxSuggest::CodeLine
表示给定源文件中的单行代码
此对象包含有关该行的元数据,例如缩进量、是否为空以及词法数据,例如它是否包含“end”或关键字。
可以切换行的可见性。将行标记为不可见表示它不应用于语法检查。它在功能上与注释掉它相同。
示例
line = CodeLine.from_source("def foo\n").first line.number => 1 line.empty? # => false line.visible? # => true line.mark_invisible line.visible? # => false
常量
- TRAILING_SLASH
属性
当代码行被标记为不可见时,我们保留其行的原始值,这对于调试和显示额外上下文很有用
DisplayCodeWithLineNumbers
将渲染给它的所有行,而不仅仅是可见行,它使用 original 方法来获取它们。
公共类方法
从源字符串返回 CodeLine
对象数组
# File lib/syntax_suggest/code_line.rb, line 29 def self.from_source(source, lines: nil) lines ||= source.lines lex_array_for_line = LexAll.new(source: source, source_lines: lines).each_with_object(Hash.new { |h, k| h[k] = [] }) { |lex, hash| hash[lex.line] << lex } lines.map.with_index do |line, index| CodeLine.new( line: line, index: index, lex: lex_array_for_line[index + 1] ) end end
# File lib/syntax_suggest/code_line.rb, line 42 def initialize(line:, index:, lex:) @lex = lex @line = line @index = index @original = line @line_number = @index + 1 strip_line = line.dup strip_line.lstrip! @indent = if (@empty = strip_line.empty?) line.length - 1 # Newline removed from strip_line is not "whitespace" else line.length - strip_line.length end set_kw_end end
公共实例方法
比较运算符,用于相等性和排序
# File lib/syntax_suggest/code_line.rb, line 150 def <=>(other) index <=> other.index end
“空行”是指源代码中最初留空的代码行,而“隐藏行”是指我们后来标记为“不可见”的代码行。
# File lib/syntax_suggest/code_line.rb, line 115 def empty? @empty end
- 不稳定的 API
-
具有 ‘on_ignored_nl` 类型标记但没有 `BEG` 类型的代码行似乎是将多行合并为一行的良好代理。
此谓词方法用于确定何时满足这两个条件。
已知的一个无法处理的情况是
Ripper.lex <<~EOM a && b || c EOM
出于某种原因,这引入了 ‘on_ignore_newline` 但带有 BEG 类型
# File lib/syntax_suggest/code_line.rb, line 172 def ignore_newline_not_beg? @ignore_newline_not_beg end
用于通过缩进级别进行稳定排序
Ruby 的排序不是“稳定的”,这意味着当多个元素具有相同的值时,不能保证它们以放入时的相同顺序返回。
因此,当多行代码具有相同的缩进级别时,它们会按其索引值排序,该索引值是唯一且一致的。
这主要用于测试套件的一致性
# File lib/syntax_suggest/code_line.rb, line 72 def indent_index @indent_index ||= [indent, index] end
如果确定代码行包含 ‘end` 关键字,则返回 true
# File lib/syntax_suggest/code_line.rb, line 87 def is_end? @is_end end
如果确定代码行包含与 ‘end` 匹配的关键字,则返回 true
例如:‘def`、`do`、`begin`、`ensure` 等。
# File lib/syntax_suggest/code_line.rb, line 81 def is_kw? @is_kw end
用于隐藏代码行
搜索算法会将代码行分组为块,然后如果确定这些块代表有效的代码,它们将被隐藏
# File lib/syntax_suggest/code_line.rb, line 96 def mark_invisible @line = "" end
‘empty?’ 的反义词(注意:与 ‘visible?’ 不同)
# File lib/syntax_suggest/code_line.rb, line 120 def not_empty? !empty? end
渲染给定的行
也允许我们将源代码表示为代码行数组。
当我们有一个代码行元素数组时,在数组上调用 ‘join` 将在每个元素上调用 `to_s`,这实际上将其转换回原始源字符串。
# File lib/syntax_suggest/code_line.rb, line 133 def to_s line end
# File lib/syntax_suggest/code_line.rb, line 184 def trailing_slash? last = @lex.last last&.type == :on_tstring_end end
表示该行被标记为“不可见”。令人困惑的是,“空”行是可见的……它们只是不包含任何源代码,除了换行符 (“\n”)。
# File lib/syntax_suggest/code_line.rb, line 103 def visible? !line.empty? end
私有实例方法
无限方法检测
来自 github.com/ruby/irb/commit/826ae909c9c93a2ddca6f9cfcd9c94dbf53d44ab 检测“单行代码”似乎需要状态机。这可以通过主要查看“状态”(最后一个值)来完成。
ENDFN -> BEG (token = '=' ) -> END
# File lib/syntax_suggest/code_line.rb, line 206 def set_kw_end oneliner_count = 0 in_oneliner_def = nil kw_count = 0 end_count = 0 @ignore_newline_not_beg = false @lex.each do |lex| kw_count += 1 if lex.is_kw? end_count += 1 if lex.is_end? if lex.type == :on_ignored_nl @ignore_newline_not_beg = !lex.expr_beg? end if in_oneliner_def.nil? in_oneliner_def = :ENDFN if lex.state.allbits?(Ripper::EXPR_ENDFN) elsif lex.state.allbits?(Ripper::EXPR_ENDFN) # Continue elsif lex.state.allbits?(Ripper::EXPR_BEG) in_oneliner_def = :BODY if lex.token == "=" elsif lex.state.allbits?(Ripper::EXPR_END) # We found an endless method, count it oneliner_count += 1 if in_oneliner_def == :BODY in_oneliner_def = nil else in_oneliner_def = nil end end kw_count -= oneliner_count @is_kw = (kw_count - end_count) > 0 @is_end = (end_count - kw_count) > 0 end