alchemist-server icon indicating copy to clipboard operation
alchemist-server copied to clipboard

Alchemist-Server API Refactoring

Open tonini opened this issue 8 years ago • 0 comments

** Alchemist-Server API Refactoring

  • Cases
    • COMP (Completion)
    • DOCL (Documentation Lookup)
    • EVAL (Evaluate/Quote)
    • DEFL (Definition Lookup)
  • Alchemist-Server API
    • COMP
      • { "def" [ context: Elixir, imports: [], aliases: [] ] }
    • DOCL
      • { nil, { :defmodule, nil }, [ context: nil, imports: [], aliases: [] ] }
      • { List, { :flatten, nil }, [ context: nil, imports: [], aliases: [] ] }
      • { List, { :flatten, 2 }, [ context: nil, imports: [], aliases: [] ] }
      • { nil, { :create_file, nil }, [ context: nil, imports: [Mix.Generator], aliases: [] ] }
    • INFO
      • { type: :modules }
      • { type: :mixtasks }
    • EVAL
      • { type: :eval, file: "path/to/file.tmp" }
      • { type: :quote, file: "path/to/file.tmp" }
    • DEFL
      • { List, { :flatten, 1 }, [ context: nil, imports: [], aliases: [] ] }
      • { nil, { :flatten, 1 }, [ context: nil, imports: [], aliases: [] ] }

tonini avatar Aug 25 '15 09:08 tonini