All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scaps.nucleus.indexing.Indexer.scala Maven / Gradle / Ivy

The newest version!
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package scaps.nucleus.indexing

import scaps.nucleus.Definition
import scaps.nucleus.Document
import scaps.nucleus.ValueDef
import scaps.nucleus.MetaDoc
import scaps.nucleus.ValueDoc
import scaps.nucleus.TypeDef
import scaps.nucleus.TypeRef
import scaps.nucleus.LanguageSettings

private[nucleus] object Indexer {
  def defToDocs(d: Definition, language: LanguageSettings): List[Document] = {
    val internal = InternalTypes.toInternal(d, language)

    val defDoc = internal match {
      case v: ValueDef =>
        ValueIndex.valueToDoc(v)
      case t: TypeDef =>
        TypeDefIndex.typeDefToDoc(t)
    }

    defDoc :: TypeViewIndex.defToDocs(internal)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy