feat(dart/transformer:: Initial commit of ctor stubs & annotation register

Closes #646

Closes #496

Closes #498
This commit is contained in:
Tim Blasi
2015-02-17 08:38:54 -08:00
committed by Misko Hevery
parent cbc76faf11
commit 6e90cacaf4
33 changed files with 1098 additions and 0 deletions

View File

@ -0,0 +1,8 @@
library foo;
const contextString = 'soup';
class MyContext {
final String s;
const MyContext(this.s);
}