Harry Terkelsen
6a7e3ca102
Remove virtualField helper, just emit getters/setters in codegen.
...
Also fixes problems with final field overrides, which only override
the getter, not the setter.
BUG=https://github.com/dart-lang/dev_compiler/issues/486
R=jmesserly@google.com
Review URL: https://codereview.chromium.org/1918033002 .
2016-04-26 12:39:48 -07:00
Vijay Menon
936f059f48
Use correct annotation for JS names
...
Did we switch from "@JS" to "@JsName"?
R=jacobr@google.com
Review URL: https://codereview.chromium.org/1920473003 .
2016-04-25 08:33:52 -07:00
Jacob Richman
afc18e6061
Update sdk removing explicit as checks.
...
BUG=
R=leafp@google.com
Review URL: https://codereview.chromium.org/1907353003 .
2016-04-25 08:25:03 -07:00
Vijay Menon
886616c3aa
Fixes #519
...
This is the Symbol bug which is breaking package:unittest.
R=leafp@google.com
Review URL: https://codereview.chromium.org/1915533004 .
2016-04-22 11:26:57 -07:00
Jacob Richman
cb59a83138
Fix build break due to bug 522
...
BUG=
Review URL: https://codereview.chromium.org/1904373002 .
2016-04-21 17:18:44 -07:00
John Messerly
ea5016ccbe
fixes #516 , nested cascade code generation
...
our let* was not hygenic, due to incorrect use of named substitution
R=vsm@google.com
Review URL: https://codereview.chromium.org/1910233002 .
2016-04-21 15:19:15 -07:00
Jacob Richman
27ed87462b
Cleanup dart:indexed_db, dart:svg, and dart:js errrors. update dart:html with extra generic methods.
...
BUG=
R=vsm@google.com
Review URL: https://codereview.chromium.org/1909193002 .
2016-04-21 14:51:18 -07:00
Harry Terkelsen
0d36e889e2
Emit forwarding getter/setter when overriding just a getter or setter.
...
Based on Vijay's change: https://github.com/dart-lang/dev_compiler/commit/74dc4a6a808b271312aabe1bf463f1e7f4889a43
BUG=https://github.com/dart-lang/dev_compiler/issues/497
R=jmesserly@google.com
Review URL: https://codereview.chromium.org/1899373002 .
2016-04-20 18:08:09 -07:00
Jacob Richman
a429090901
Fix undefined method errors adding no-op stubs for methods needed by dart2js but irrelevant in ddc. We could later optimize ddc by providing a custom dart:html that doesn't use these methods. Fixes https://github.com/dart-lang/dev_compiler/issues/506
...
BUG=
Review URL: https://codereview.chromium.org/1905803002 .
2016-04-20 18:03:29 -07:00
Jacob Richman
5dd5c364d6
Fix all dart:html strong mode errors except for spurious FINAL_NOT_INITIALIZED_CONSTRUCTOR warnings.
...
BUG=
R=jmesserly@google.com , vsm@google.com
Review URL: https://codereview.chromium.org/1887233005 .
2016-04-20 15:31:41 -07:00
Jacob MacDonald
419f6e5382
add e2e tests for usage/compile errors
2016-04-20 14:29:38 -07:00
Jacob MacDonald
486d9f50cc
Move to AsyncWorkerLoop since CommandRunner.run returns a future.
2016-04-20 14:09:32 -07:00
John Messerly
261d7bf63a
a few small dart:_runtime cleanups
...
R=vsm@google.com
Review URL: https://codereview.chromium.org/1896343002 .
2016-04-20 12:52:32 -07:00
Vijay Menon
5cb361db25
Fix for node modules
...
We weren't emitting the actual program. :-)
Seems to work really well - using for easy command line testing.
R=jmesserly@google.com
Review URL: https://codereview.chromium.org/1893293003 .
2016-04-19 14:28:43 -07:00
Harry Terkelsen
b53f682660
pipe filenames through sort for consistent ordering
...
BUG=
R=jmesserly@google.com
Review URL: https://codereview.chromium.org/1895863003 .
2016-04-18 15:33:26 -07:00
Harry Terkelsen
7e32a93b26
emit 'this.x' when 'super.x' accesses a field
...
BUG=https://github.com/dart-lang/dev_compiler/issues/501
R=jmesserly@google.com
Review URL: https://codereview.chromium.org/1895903002 .
2016-04-18 14:44:23 -07:00
Jacob MacDonald
4e54ff0181
Move all args to per-request for the worker, and add a test
...
BUG=
R=jmesserly@google.com
Review URL: https://codereview.chromium.org/1896613002 .
2016-04-18 11:17:08 -07:00
Harry Terkelsen
9f4ea0936c
don't crash when given no arguments
...
BUG=
R=vsm@google.com
Review URL: https://codereview.chromium.org/1900693002 .
2016-04-18 09:26:10 -07:00
vsmenon
eb49d944cd
Update USAGE.md
2016-04-16 11:24:02 -07:00
John Messerly
4e958f5f54
Support reading summaries in DDC
...
R=sigmund@google.com
Review URL: https://codereview.chromium.org/1893603003 .
2016-04-15 13:52:18 -07:00
Jacob MacDonald
cb358696e1
dont reuse the analysis context across worker requests
...
BUG=
R=jmesserly@google.com
Review URL: https://codereview.chromium.org/1892553003 .
2016-04-15 10:54:06 -07:00
Jacob MacDonald
308fa5ccb4
Add bazel worker support to the dev compiler.
...
BUG=
R=jmesserly@google.com , vsm@google.com
Review URL: https://codereview.chromium.org/1884073003 .
2016-04-15 06:51:40 -07:00
John Messerly
b8d55ce95d
add command test, fix relative paths
...
R=vsm@google.com
Review URL: https://codereview.chromium.org/1886393003 .
2016-04-14 12:35:05 -07:00
John Messerly
7950a0a88e
Fix DDC build
...
this was a last minute fix for relative paths, but it went wrong and broke the SDK build
Review URL: https://codereview.chromium.org/1887163002 .
2016-04-14 11:58:16 -07:00
John Messerly
0c148ecef4
Implement modular compilation
...
Highlights
* compile one module at a time
* use summaries to speed up compiles
* use command runner so we can add more commands later
* some long needed renames and file organization
* various other technical debt has been addressed
Lowlights
* lost node.js runner/tests (node output format still supported)
* possibly lost some closure support/workarounds (format still supported)
* needs more end-to-end tests of the new system
R=vsm@google.com
Review URL: https://codereview.chromium.org/1879373004 .
2016-04-14 11:28:12 -07:00
vsmenon
1cb3763ae8
Update CHANGELOG.md
2016-04-01 09:11:08 -07:00
vsmenon
fae421eb2b
Update devc.dart
2016-04-01 09:10:25 -07:00
vsmenon
9fd404001d
Update package.json
2016-04-01 09:10:14 -07:00
vsmenon
778c63755d
Update pubspec.yaml
2016-04-01 09:10:02 -07:00
Vijay Menon
d54ed38046
Work around dart:html inconsistency
...
We're hitting a runtime bug on requestAnimationFrame when we compile
against the latest dart:html in the analyzer (45) but run against the
DDC one (based on 39).
Adding the new type name by hand as a workaround until we roll, but
longer term we'll need to compile and run against the same sdk.
R=alanknight@google.com , leafp@google.com
Review URL: https://codereview.chromium.org/1849133003 .
2016-04-01 09:06:58 -07:00
vsmenon
196c8f33ea
Update CHANGELOG.md
2016-03-31 15:34:06 -07:00
vsmenon
8c336dbfff
Update devc.dart
2016-03-31 15:33:14 -07:00
vsmenon
d8349d6c77
Update package.json
2016-03-31 15:33:01 -07:00
vsmenon
4f17bacd8a
Update pubspec.yaml
2016-03-31 15:32:52 -07:00
Vijay Menon
14746d2501
Allow node tests to break on travis
...
Sorry for the spam. Browser tests are now working, but node cannot find the SDK:
https://travis-ci.org/dart-lang/dev_compiler/jobs/119936690
I suspect you're breaking this anyway?
TBR=jmesserly@google.com
Review URL: https://codereview.chromium.org/1845423003 .
2016-03-31 15:23:14 -07:00
Vijay Menon
ba92223ef9
Remove harmony flag for travis runs
...
This appears to trigger our generator breakage.
TBR=jmesserly@google.com
Review URL: https://codereview.chromium.org/1853433003 .
2016-03-31 15:10:11 -07:00
Vijay Menon
1d1438cec7
Regen against latest analyzer
...
A couple notes:
- regress_18535_test started failing at runtime. It's using unimplemented mirrors code, so perhaps a static failure before.
- typed_data_sublist_type_dart started failing at runtime. It was inferring Is<EfficientLength> with the type omitted. :-(
- my local chrome is newer than the one on travis failing on generators. not seeing that error.
TBR=jmesserly@google.com
Review URL: https://codereview.chromium.org/1847163002 .
2016-03-31 13:18:42 -07:00
John Messerly
e8bee43919
More analyzer updates, and handle negative_tests
...
Also fixes node_test to not overwrite main SDK log
R=vsm@google.com
Review URL: https://codereview.chromium.org/1840203002 .
2016-03-29 15:16:44 -07:00
John Messerly
63a119bd86
fix to run against latest analyzer
...
hard part was dealing with the new for-each changes
the good news is the new for-each logic simplifes our await-for checking
R=leafp@google.com , rnystrom@google.com
Review URL: https://codereview.chromium.org/1840713003 .
2016-03-28 14:22:36 -07:00
Leaf Petersen
569c4f9045
Tweaks to compile against latest analyzer. Also changes the travis
...
setup to only override analyzer dependencies when $ANALYZER is
explicitly set to master.
BUG=
R=rnystrom@google.com
Review URL: https://codereview.chromium.org/1808123006 .
2016-03-18 20:57:00 -07:00
Leaf Petersen
8a833f1e3a
Add generic types to Stream.transform in the DDC sdk.
...
https://github.com/dart-lang/sdk/issues/25860
Main SDK fix to follow.
BUG=
R=rnystrom@google.com
Review URL: https://codereview.chromium.org/1808393002 .
2016-03-17 17:49:15 -07:00
John Messerly
73159b6c1e
Remove code that requires whole-program compile
...
This change removes functionality that is not part of the core Dart Dev
Compiler, in particular those features that were not designed for
incremental/modular compilation.
For a while, the primary way to use DDC will be as a compiler invoked by
a build system, e.g. make or bazel or some node.js based-build system.
We'd love to see the user functionality provided by these return.
In particular, a well designed server+watcher system would be a huge
boost to productivity!
I'll see about moving over HTML reporting to Analyzer CLI. It has a lovely UI.
Thanks to everyone who contributed these features.
The following features were removed:
* DDC transformer. Transformers require whole world, in memory files.
* DDC server. The server has its own mini-build system.
* Various kinds of reporting. These should be moved to Analyzer CLI.
Note: batch compiler and the node runner are left for now.
R=vsm@google.com
Review URL: https://codereview.chromium.org/1788973002 .
2016-03-15 11:30:50 -07:00
vsmenon
0641425db4
Update CHANGELOG.md
2016-03-15 10:36:42 -07:00
vsmenon
72c02ea2f9
Update devc.dart
2016-03-15 10:34:38 -07:00
vsmenon
fc35022f9a
Update package.json
2016-03-15 10:34:18 -07:00
vsmenon
2cb31f7219
Update pubspec.yaml
2016-03-15 10:33:58 -07:00
Leaf Petersen
2fae28ee43
Resolve obvious deprecation warnings on bleeding edge
...
BUG=
R=jmesserly@google.com
Review URL: https://codereview.chromium.org/1797063002 .
2016-03-15 10:15:34 -07:00
Vijay Menon
5b4fdead8d
Fixes #479
...
R=jmesserly@google.com
Review URL: https://codereview.chromium.org/1803033002 .
2016-03-15 10:13:25 -07:00
Leaf Petersen
bf8c7cd07d
Filter warnings from dependency_overrides to make travis green on
...
bleeding edge analyzer.
Bleeding edge analyzer has some deprecation hints. We're using --package-warnings in our analyze.sh script and grepping for dev_compiler directory to limit us to dev_compiler errors. This CL adds
an additional filter to hide warnings from dependency_overrides.
BUG=
R=jmesserly@google.com , vsm@google.com
Review URL: https://codereview.chromium.org/1781123004 .
2016-03-14 14:52:56 -07:00
John Messerly
8de2cf84bc
simplify function coercions -- DDC can generate function types in place
...
R=leafp@google.com
Review URL: https://codereview.chromium.org/1783603009 .
2016-03-14 10:37:57 -07:00