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
3
View Source File : test_compiler.py
License : MIT License
Project Creator : rthorst
License : MIT License
Project Creator : 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():