class BELParser::Completion::FunctionTermCompleter

Public Instance Methods

make_completion(function) click to toggle source
# File lib/bel_parser/completion.rb, line 643
def make_completion(function)
  [
    function,
    term(
      function(
        identifier(
          function.short.to_s)))
  ]
end