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

com.strumenta.kolasu.lionweb.LanguageGenerator.kt Maven / Gradle / Ivy

There is a newer version: 1.5.73
Show newest version
package com.strumenta.kolasu.lionweb

import com.github.ajalt.clikt.core.CliktCommand
import com.github.ajalt.clikt.core.subcommands
import com.strumenta.kolasu.emf.cli.KolasuLanguageGeneratorCommand
import com.strumenta.kolasu.language.KolasuLanguage
import io.lionweb.lioncore.java.language.Language

class LanguageGenerator(kLanguage: KolasuLanguage, lwLanguage: Language? = null) : CliktCommand() {
    override fun run() = Unit

    init {
        if (lwLanguage == null) {
            subcommands(KolasuLanguageGeneratorCommand(kLanguage))
        } else {
            subcommands(KolasuLanguageGeneratorCommand(kLanguage), LionWebLanguageGeneratorCommand(lwLanguage))
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy