21433 Commits

Author SHA1 Message Date
Vojta Jina
c7e9d10f0b test(transpiler): add spec for instanceof 2014-10-09 15:22:20 -07:00
Vojta Jina
85ee62cb0d chore(transpiler): show filepath when error happens 2014-10-09 15:17:53 -07:00
Vojta Jina
94e556465b fix(transpiler): only call transform/visit when defined
Our custom ParseTree classes should not expect that every
transformer/visitor defines the methods to transform/visit them.
2014-10-09 15:08:30 -07:00
Victor Berchet
d1b90e125b feat(transpiler): add support for arrow functions
fixes 
2014-10-09 14:44:07 -07:00
vsavkin
1214f423b4 feat(transpiler): implement optional params 2014-10-09 14:27:32 -07:00
Vojta Jina
fb01551620 chore: allow running Dart/JS Karma at the same time
Use `9876` port for JS.
Use `9877` port for Dart.
2014-10-09 13:50:25 -07:00
Victor Berchet
5818c3bf28 refactor(named parameters): mimic original traceur architecture 2014-10-08 12:53:55 +02:00
Victor Berchet
5527a1b1a4 feature(change detection): implement barebone ChangeDetector
fixes 
2014-10-08 11:11:56 +02:00
Vojta Jina
38340ce8d9 test(transpiler): add a cycle import spec 2014-10-07 17:35:22 -07:00
Vojta Jina
6efb7f9017 transpiler: normalize Dart library name
`file2module` was used for normalizing paths where `-` is fine.
This normalizes non-word characters only when generating the Dart
library name.
2014-10-07 17:35:22 -07:00
Vojta Jina
cfc5fdc60d chore: use es6-module-loader
Switch Traceur to use modules=“instantiate” and use es6-module-loader.
This setup supports cyclic dependencies.
2014-10-07 17:35:22 -07:00
Chirayu Krishnappa
774901c225 chore(karma): use ChromeCanary as the default for JS
Closes 
2014-10-07 16:48:03 -07:00
Chirayu Krishnappa
e4ce69dcc7 test(scanner): port the rest of the lexer tests from AngularDart
Closes 
2014-10-07 16:47:50 -07:00
vsavkin
5162b3c0ca refactor(reflector): cleanup 2014-10-07 10:42:27 -04:00
vsavkin
7d566adea0 style(reflector): formatting 2014-10-07 10:34:07 -04:00
vsavkin
187c4aa33c refactor(injector): uses one instance of reflector instead of creating a new instance every time 2014-10-07 10:29:32 -04:00
vsavkin
ab4f86a0cb refactor(injector): cleanup 2014-10-07 10:03:06 -04:00
vsavkin
ea22cc4c7a refactor(injector): add @FIELD annotations to Key and Dependency 2014-10-07 09:39:52 -04:00
vsavkin
df09a7c817 refactor(injector): add bool and int annotations 2014-10-07 09:37:45 -04:00
vsavkin
971e31fcd3 feat(facade): add bool type 2014-10-07 09:37:23 -04:00
vsavkin
4e0c368c03 refactor(injector): remove DIError 2014-10-07 09:21:00 -04:00
vsavkin
62004e22e0 feat(injector): change injector to show the full path when error happens in a constructor (async) 2014-10-07 09:04:11 -04:00
vsavkin
e7666d0612 feat(injector): handle async cyclic dependencies 2014-10-06 16:24:12 -04:00
vsavkin
a0176273c5 feat(injector): implement InjectLazy 2014-10-06 15:03:05 -04:00
vsavkin
e02cdfe733 feat(injector): handle in-progress async construction 2014-10-06 15:03:05 -04:00
vsavkin
4d6c7481ad feat(injector): handle construction errors
- Detect cyclic deps
- Handle initialization errors
2014-10-06 15:03:05 -04:00
vsavkin
14af5a0a42 feat(injector): implement async dependencies 2014-10-06 15:02:41 -04:00
vsavkin
a814d48bbc refactor(injector): use @CONST to create the Inject annotation 2014-10-03 20:34:37 -04:00
vsavkin
f63a5dd158 refactor(injector): change reflector to collect the resolving path only when an error occurs 2014-10-03 19:54:53 -04:00
vsavkin
15305b6cd7 refactor(facade): instantiate a fixed length array 2014-10-03 16:31:12 -04:00
vsavkin
a85812f688 refactor(injector): rename humanize into stringify 2014-10-03 16:29:59 -04:00
vsavkin
b2199632c7 feat(injector): initial implementaion of dynamic injector 2014-10-03 15:35:33 -04:00
Misko Hevery
6c8da62c1b fix: Enabled annotation support for Dart 2014-10-02 21:48:46 -07:00
Misko Hevery
cbd429640f chore: remove hello test 2014-10-02 21:02:48 -07:00
Victor Berchet
089a2f1b62 feat(transpiler): constructor and typed field semantics
fixes  (constructor and typed field semantics)
fixes  (Should we infer class property types from ctor args ?)
fixes  (number (js) should map to num (dart))

Closes 
2014-10-02 21:02:47 -07:00
Misko Hevery
fd0c2d8063 design: added selector interface 2014-10-02 20:39:27 -07:00
Tobias Bosch
33af1d0b39 chore(build): execute pub get only if a pubspec.yaml changed and run dart analyzer on all dart files
`pub get` is now only executed when the `pubspec.yaml` in the `modules`
folder is different than the `pubspec.yaml` in the `build/dart` folder.

Generates the file `build/dart/_analyzer.dart` that imports all modules
to run `dart analyzer` against all of them. The build will fail whenever
there are errors, warnings or hints in `dart analyzer`.

Changes the sources so that `dart analyzer` does not report any
error, warning or hint.

Closes 
2014-10-02 16:10:08 -07:00
vsavkin
64fe73e20d feat(transpiler): handle named params 2014-10-02 17:31:04 -04:00
Misko Hevery
f9923ea7db test: add example test for change_detection 2014-10-01 22:17:14 -07:00
Chirayu Krishnappa
78d758b4bb fixes to get tests green with karma dart 2014-10-01 19:58:22 -07:00
Chirayu Krishnappa
d7d52aaef2 refactor(lexer): rename to scanner, use ints, etc. 2014-10-01 17:06:17 -07:00
Chirayu Krishnappa
3482fb1291 feat(facade/lang): support int 2014-10-01 17:06:17 -07:00
Chirayu Krishnappa
c7feaba1cb feat(DartWriter): support string interpolation 2014-10-01 17:06:17 -07:00
Chirayu Krishnappa
c85ab3a5a4 feat(lexer): initial (wip) implementation. 2014-10-01 12:50:44 -07:00
Victor Berchet
cff47d4f8e fix(DartWriter): number (js) maps to num (dart) 2014-10-01 11:22:47 -07:00
Victor Berchet
99bad64c3f doc(README): HOWTO debug the transpiler 2014-10-01 17:32:59 +02:00
Misko Hevery
69210e4fde design: add test change_detection 2014-09-30 17:02:33 -07:00
Vojta Jina
934f31a4fa chore: fix karma dart setup 2014-09-30 16:58:02 -07:00
Misko Hevery
e3254d4a7d design: update change_detection 2014-09-30 15:57:05 -07:00
Victor Berchet
64d3cc68f0 refactor(transpiler): split the monolithic dart transformer
fixes 

The new architecture conforms with the Traceur architecture.
2014-09-30 16:15:35 +02:00