feat(decorators): adds support for parameter decorators.

Paramater decorators expect to be called as currently implemented by TS.
This commit is contained in:
Rado Kirov
2015-04-29 16:22:38 -07:00
parent e4342743c0
commit f863ea0db5
5 changed files with 182 additions and 17 deletions

View File

@ -217,3 +217,6 @@ class DateWrapper {
return date.toUtc().toIso8601String();
}
}
// needed to match the exports from lang.js
var global = null;