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

com.faendir.kotlin.autodsl.CodeWriter.kt Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package com.faendir.kotlin.autodsl

import com.squareup.kotlinpoet.FileSpec

interface CodeWriter {
    fun emit(source: S, fileSpec: FileSpec)
}

fun  FileSpec.writeTo(source: S, codeWriter: CodeWriter) = codeWriter.emit(source, this)