模块 IRB::InputCompletor

常量

CompletionProc

公共类方法

retrieve_completion_data(input, bind: IRB.conf[:MAIN_CONTEXT].workspace.binding, doc_namespace: false) 点击切换源代码
# File lib/irb/completion.rb, line 451
def retrieve_completion_data(input, bind: IRB.conf[:MAIN_CONTEXT].workspace.binding, doc_namespace: false)
  regexp_completor.retrieve_completion_data(input, bind: bind, doc_namespace: doc_namespace)
end

私有类方法

regexp_completor() 点击切换源代码
# File lib/irb/completion.rb, line 447
        def regexp_completor
  @regexp_completor ||= RegexpCompletor.new
end