class Prism::ParseLexResult
这是 `parse_lex` 和 `parse_lex_file` 方法特有的结果。
属性
value[R]
语法树和从源代码解析的令牌列表的元组。
公共类方法
new(value, comments, magic_comments, data_loc, errors, warnings, source) 单击以切换源代码
使用给定的值创建一个新的解析词法分析结果对象。
调用超类方法
Prism::Result::new
# File prism/parse_result.rb, line 787 def initialize(value, comments, magic_comments, data_loc, errors, warnings, source) @value = value super(comments, magic_comments, data_loc, errors, warnings, source) end
公共实例方法
deconstruct_keys(keys) 单击以切换源代码
为 ParseLexResult
实现哈希模式匹配接口。
# File prism/parse_result.rb, line 793 def deconstruct_keys(keys) super.merge!(value: value) end