dev_compiler
dev_compiler copied to clipboard
DEPRECATED - Moved to main SDK
The [Closure Compiler](https://github.com/google/closure-compiler) can _almost_ consume the output of DDC with `--language_in=ECMASCRIPT6_STRICT -O SIMPLE` (and output ES5 code). Here are some blockers: - (fixed by https://github.com/google/closure-compiler/commit/3f54e473500ee54a4aa5c264dbe6f61d82586a8d) ~~`super` getter calls aren't...
Note that DDC supports basic type annotations (when `--closure` is set #286), but Closure doesn't currently accept DDC's output, not even in [SIMPLE](https://developers.google.com/closure/compiler/docs/compilation_levels) mode (#312). Here are some of the...
There's a Clojure tool called Figwheel that does the following: "Basically, as soon as you save the file you are working on (ClojureScript, HTML, or CSS) figwheel will load the...
it needs to be pulled over into the new test style
The debugging experience, especially for large apps, is much better if we automatically trap on certain errors. Catch on all exceptions doesn't seem to work well with Angular2 - they...
we immediately do this: `let ftype = dart.read(f);` .... which tries to read a symbol on null/undefined, and fails. Needs to be fixed
after https://codereview.chromium.org/1680263002/, we do two property sets in there. It is supposed to be a very fast **proto** set to handle generic extension types. I don't think an extra property...
We're now generating the following for raw dom indexing. Looks broken - we're probably not runtime regression. https://codereview.chromium.org/1680263002/diff/60001/test/codegen/expect/sunflower/dom.js Need to investigate further - the CL above is for typed data...
DDC propagates the sign on a right shift. This appears to violate Dart semantics. The following prints `1` on the VM / dart2js and `-1` in DDC. ``` dart void...
Currently we tag classes with their signature after they have been produced. I believe that it would be not too hard to emit the signature metadata directly onto the class,...