dev_compiler icon indicating copy to clipboard operation
dev_compiler copied to clipboard

DEPRECATED - Moved to main SDK

Results 56 dev_compiler issues
Sort by recently updated
recently updated
newest added

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...

dev-compiler-closure
area-dev-compiler

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...

dev-compiler-closure
area-dev-compiler

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...

Type: enhancement
area-dev-compiler

it needs to be pulled over into the new test style

dev-compiler-test
area-dev-compiler

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...

area-dev-compiler

we immediately do this: `let ftype = dart.read(f);` .... which tries to read a symbol on null/undefined, and fails. Needs to be fixed

area-dev-compiler

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...

Type: code health
area-dev-compiler

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...

Type: bug
area-dev-compiler

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...

Type: bug
P2 medium
area-dev-compiler

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,...

Type: performance
area-dev-compiler