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

com.theoryinpractise.coffeescript.CompileResult Maven / Gradle / Ivy

There is a newer version: 1.4.18
Show newest version
package com.theoryinpractise.coffeescript;

public class CompileResult {

    private String js;
    private String map;

    public CompileResult(String js, String map) {
        this.js = js;
        this.map = map;
    }

    public String getJs() {
        return js;
    }

    public String getMap() {
        return map;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy