There's currently support for function decorators, e.g.: ``` @computed // jsDecoratorFunction get title () { ... } ``` But not for class decorators, e.g.: ``` @observer // nothing class MyClass { ... } ```