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

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

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

import io.lionweb.lioncore.java.language.Concept
import io.lionweb.lioncore.java.language.Language
import io.lionweb.lioncore.java.language.PrimitiveType

object StarLasuLWLanguage : Language() {
    init {
        name = "com.strumenta.StarLasu"
        id = "com_strumenta_starlasu"
        version = "1"
        key = id
        Concept(this, "ASTNode", id + "_ASTNode").setKey(id + "_ASTNode")
        PrimitiveType(this, "Char", id + "_Char").setKey(id + "_Char")
    }

    val ASTNode: Concept
        get() = getConceptByName("ASTNode")!!

    val char: PrimitiveType
        get() = getPrimitiveTypeByName("Char")!!
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy