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

commonMain.org.intellij.markdown.ast.LeafASTNode.kt Maven / Gradle / Ivy

package org.intellij.markdown.ast

import org.intellij.markdown.IElementType

open class LeafASTNode(type: IElementType, startOffset: Int, endOffset: Int) : ASTNodeImpl(type, startOffset, endOffset) {
    override val children: List
        get() = EMPTY_CHILDREN

    companion object {
        private val EMPTY_CHILDREN = ArrayList(0)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy