refactor: remove ts2dart annotations

This commit is contained in:
Victor Berchet
2016-07-30 19:18:14 -07:00
parent 13c8211065
commit 28c4852cd6
89 changed files with 344 additions and 489 deletions

View File

@ -60,7 +60,7 @@ export function main() {
describe('const', () => {
it('should support const expressions both in TS and Dart', () => {
const numbers = /*@ts2dart_const*/[1, 2, 3];
const numbers = [1, 2, 3];
expect(numbers).toEqual([1, 2, 3]);
});
});