use of org.elixir_lang.structure_view.element.modular.Modular in project intellij-elixir by KronicDeth.
the class GotoSymbolContributor method getItemsFromModule.
private void getItemsFromModule(@NotNull List<NavigationItem> items, @NotNull EnclosingModularByCall enclosingModularByCall, @NotNull Call call) {
Modular modular = enclosingModularByCall.putNew(call);
Module module = new Module(modular, call);
items.add(module);
}
Aggregations