dart-archive / ts2dart

ts2dart TypeScript to Dart transpiler
Apache License 2.0
180 stars 61 forks source link

add support for public/private constructor sugar along with decorators #277

Open rkirov opened 9 years ago

rkirov commented 9 years ago

The following is valid TS, but Victor tells me it makes ts2dart choke.

class A {
   constructor(@Ann public a){}
}