class Prism::LexResult
这是特定于 `lex` 和 `lex_file` 方法的结果。
属性
value[R]
从源代码解析的标记列表。
公共类方法
new(value, comments, magic_comments, data_loc, errors, warnings, source) 点击切换源代码
使用给定值创建一个新的词法分析结果对象。
调用父类方法
Prism::Result::new
# File prism/parse_result.rb, line 769 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) 点击切换源代码
实现 LexResult
的哈希模式匹配接口。
# File prism/parse_result.rb, line 775 def deconstruct_keys(keys) super.merge!(value: value) end