Class: BELParser::Completion::FunctionCompleter

Inherits:
BaseCompleter show all
Defined in:
lib/bel_parser/completion.rb

Instance Method Summary collapse

Methods inherited from BaseCompleter

#initialize

Methods included from Parsers::AST::Sexp

#annotation_definition, #argument, #blank_line, build, #comment, #comment_line, #document_property, #domain, #function, #identifier, #keyword, #list, #list_item, #multi_identifier, #name, #namespace_definition, #nested_statement, #object, #observed_term, #parameter, #pattern, #prefix, #relationship, #set, #simple_statement, #statement, #string, #subject, #term, #unset, #uri, #url, #value

Constructor Details

This class inherits a constructor from BELParser::Completion::BaseCompleter

Instance Method Details

#complete(string_literal, caret_position) ⇒ Object



619
620
621
622
623
624
625
626
627
# File 'lib/bel_parser/completion.rb', line 619

def complete(string_literal, caret_position)
  pattern = /.*#{Regexp.quote(string_literal)}.*/i
  @spec.functions
    .select  { |function| function =~ pattern }
    .sort_by { |function| function.long       }
    .map     { |function|
      make_completion(function)
    }
end