class BELParser::Completion::AllFunctionArgumentCompleter

Public Instance Methods

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