bokeh.util.compiler.CoffeeScript

Here are the examples of the python api bokeh.util.compiler.CoffeeScript taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : test_compiler.py
with MIT License
from rthorst

def test_CoffeeScript():
    obj = buc.CoffeeScript("code")
    assert isinstance(obj, buc.Inline)
    assert obj.code == "code"
    assert obj.file == None
    assert obj.lang == "coffeescript"

def test_TypeScript():