模块 RDoc::Parser::RubyTools
用于编写解析器的方法集合
公共实例方法
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 10 def add_token_listener(obj) @token_listeners ||= [] @token_listeners << obj end
添加一个令牌监听器 obj
,但您可能应该使用 token_listener
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 18 def get_tk tk = nil if @tokens.empty? then if @scanner_point >= @scanner.size return nil else tk = @scanner[@scanner_point] @scanner_point += 1 @read.push tk[:text] end else @read.push @unget_read.shift tk = @tokens.shift end if tk == nil || :on___end__ == tk[:kind] tk = nil end return nil unless tk # inform any listeners of our shiny new token @token_listeners.each do |obj| obj.add_token(tk) end if @token_listeners tk end
从扫描器中获取下一个令牌
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 52 def get_tk_until(*tokens) read = [] loop do tk = get_tk case tk when *tokens then unget_tk tk break end read << tk end read end
读取并返回直到其中一个 tokens
的所有令牌。将匹配的令牌留在令牌列表中。
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 73 def get_tkread read = @read.join("") @read = [] read end
检索读取令牌的 String
表示形式
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 82 def peek_read @read.join('') end
get_tkread
的等效窥视
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 89 def peek_tk unget_tk(tk = get_tk) tk end
窥视下一个令牌,但不要将其从流中删除
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 97 def remove_token_listener(obj) @token_listeners.delete(obj) end
移除令牌监听器 obj
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 104 def reset @read = [] @tokens = [] @unget_read = [] @nest = 0 @scanner_point = 0 end
重置工具
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 115 def skip_tkspace tokens = [] while (tk = get_tk) and (:on_sp == tk[:kind] or :on_nl == tk[:kind] or :on_ignored_nl == tk[:kind]) do tokens.push(tk) end unget_tk(tk) tokens end
跳过包括换行符的空白令牌
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 129 def skip_tkspace_without_nl tokens = [] while (tk = get_tk) and :on_sp == tk[:kind] do tokens.push(tk) end unget_tk(tk) tokens end
跳过不包括换行符的空白令牌
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 143 def token_listener(obj) add_token_listener obj yield ensure remove_token_listener obj end
使 obj
监听令牌
源代码
# File lib/rdoc/parser/ruby_tools.rb, line 153 def unget_tk(tk) @tokens.unshift tk @unget_read.unshift @read.pop # Remove this token from any listeners @token_listeners.each do |obj| obj.pop_token end if @token_listeners nil end
将 tk
返回给扫描器