Commit Graph

1931 Commits

Author SHA1 Message Date
John Messerly db9e46344b update baseline
forgot to do this after a merge

Review URL: https://codereview.chromium.org/1067553002
2015-04-06 09:20:40 -07:00
John Messerly 941dda3403 use VariableElement instead of VariableElementImpl in _isStateless
R=brianwilkerson@google.com

Review URL: https://codereview.chromium.org/1056183003
2015-04-06 09:13:04 -07:00
Kenneth Endfinger 94ef55832d Fix Typo in Pubspec 2015-04-03 19:44:24 -04:00
Vijay Menon cad0430c0d Tweaks to warning level and reporting
R=leafp@google.com

Review URL: https://codereview.chromium.org/1059873002
2015-04-03 15:46:58 -07:00
Leaf Petersen 7321b609d5 Inference casts to dynamic, fuzzy types handled
During inference, allow sub-expressions of type dynamic to be cast to the inferred type.

This CL also adds special case support for the case where we are trying to infer a type for a closure literal with a fuzzy type - often these closures are already well-typed (or easily inferable) if we eliminate the fuzziness.

This gets rid of two of the static errors on angular hello world, along with most of the InferableClosure warnings (turning them into InferredTypeClosure infos).

Most of the remaining InferableClosure cases are function literals with block function bodies, which I don't handle in general yet.

BUG=
R=vsm@google.com

Review URL: https://codereview.chromium.org/1059763003
2015-04-03 15:36:27 -07:00
Jacob Richman 5a5ddca7bc Extension method support to move us closer to a valid List implementation.
BUG=
R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1059583002
2015-04-03 14:52:04 -07:00
Vijay Menon 78cb0608b3 Disable closure wrapping by default
R=leafp@google.com

Review URL: https://codereview.chromium.org/1052383003
2015-04-03 14:26:11 -07:00
Leaf Petersen 25e87d9748 Better error messages
This records the actual point at which type inference fails and uses that to give a better error message.  So where before we would say:

severe: line 76, column 38 of package:angular2/src/forms/directives.dart: [StaticTypeError] Type check failed: [c.validator, this.validator] (List<dynamic>) is not of type List<Function>
    c.validator = validators.compose([c.validator, this.validator]);

we will now in addition say:

because c.validator cannot be typed as Function

BUG=
R=vsm@google.com

Review URL: https://codereview.chromium.org/1056183002
2015-04-03 12:49:04 -07:00
Leaf Petersen 0399992b81 Downwards closure inference. This implements a basic form of downwards closure inference. It only handles expression functions (=> e), and it does not try to narrow the type of parameters.
BUG=
R=vsm@google.com

Review URL: https://codereview.chromium.org/1050703002
2015-04-03 09:17:30 -07:00
John Messerly 0eba3903b9 move => bind this workaround to js_ast
cleaner since we only worry about it in one place, and the "this" check is easier and more precise now.

incidentally, I saw a CL go by on the V8 bug, looks like it's close to being fixed

R=jacobr@google.com

Review URL: https://codereview.chromium.org/1052693004
2015-04-02 12:17:01 -07:00
John Messerly a4cbcc0c07 implement mixins in subtype checks, more codegen fixes
or: how creating a SplayTreeSet<String> leads to fixing a bunch of stuff

R=vsm@google.com

Review URL: https://codereview.chromium.org/1058653002
2015-04-02 12:16:24 -07:00
John Messerly db1d4fac75 reduce diff churn due to server_mode test
essentially verify the expected HTML in the test
this tripped on an interesting issue, we have two ways of computing MD5 hashes that produce different answers. I left that as a TODO.

R=jacobr@google.com

Review URL: https://codereview.chromium.org/1056613002
2015-04-01 13:49:11 -07:00
Vijay Menon 316a99b719 Revert "Re-enable logging test"
We're getting an error on dev runs with this test.

TBR=jmesserly@google.com

Review URL: https://codereview.chromium.org/1052523003
2015-04-01 10:15:11 -07:00
John Messerly 864299081e partially implement instance of checks and some codegen fixes
R=vsm@google.com

Review URL: https://codereview.chromium.org/1050723002
2015-04-01 09:44:37 -07:00
Vijay Menon 3af6089191 Re-enable logging test
Meant to add this to the runner.

R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1052443002
2015-04-01 08:41:15 -07:00
Vijay Menon 2e895d355e Update mock sdk to fix test
R=sigmund@google.com

Review URL: https://codereview.chromium.org/1051523002
2015-03-31 13:26:12 -07:00
Leaf Petersen da58b9d8aa Downward inference
This is a first cut at downwards inference. The interaction with InferableLiteral etc isn't well sorted out yet, so while downwards inference on nested expressions works, there will currently be spurious warnings.

BUG=
R=vsm@google.com

Review URL: https://codereview.chromium.org/1038213003
2015-03-31 13:24:25 -07:00
Sigmund Cherem c48018ee62 Update widget with latext fix from source_span
R=jacobr@google.com

Review URL: https://codereview.chromium.org/1047083002
2015-03-31 13:11:14 -07:00
John Messerly 3ce5a11d77 compute interfaces lazily
otherwise we'd have to make a lot more classes lazy

R=jacobr@google.com

Review URL: https://codereview.chromium.org/1047203002
2015-03-31 09:14:37 -07:00
Vijay Menon 75ee9c6cc5 Handle for-in loops
R=sigmund@google.com

Review URL: https://codereview.chromium.org/1048863003
2015-03-30 17:22:46 -07:00
John Messerly 5472d0cfcd keep mixin and interface implementation info at runtime
R=jacobr@google.com, vsm@google.com

Review URL: https://codereview.chromium.org/1043003002
2015-03-30 16:09:48 -07:00
Vijay Menon e4fdeb376d Fix logging test
Just updating the broken test.  The dart_runtime.dart type rules are still out of date.

R=leafp@google.com

Review URL: https://codereview.chromium.org/1045753003
2015-03-30 16:03:50 -07:00
John Messerly fc02cba0f4 use == and != to enable handling null/undefined
R=jacobr@google.com, vsm@google.com

Review URL: https://codereview.chromium.org/1047023002
2015-03-30 16:01:22 -07:00
John Messerly 1515ceaa8e fixes private named constructors
R=jacobr@google.com

Review URL: https://codereview.chromium.org/1042943003
2015-03-30 14:30:01 -07:00
John Messerly 7cb01cb2a6 tweaks to build/test scripts
this is a follow up to reverted https://github.com/dart-lang/dev_compiler/pull/114
it relands it so it can pass on travis, with some additional tweaks to names

The new structure is:

    tool/
      presubmit.sh  # both build and test
      build_sdk.sh
      test.sh
      coverage.sh
    test/test.sh    # deprecated, with a warning message

Thoughts?

R=sigmund@google.com

Review URL: https://codereview.chromium.org/1042863004
2015-03-30 12:52:03 -07:00
John Messerly 2de38f1bf7 Revert "Reuse test.sh under Travis and fixe failing test" 2015-03-30 12:22:02 -07:00
John Messerly 33aab9c0e0 Merge pull request #114 from chalin/chalin-0327-test-script-refactor
Reuse test.sh under Travis and fixe failing test
2015-03-30 12:08:56 -07:00
John Messerly f0e35ab12c fix arguments keyword used in our helper method
R=jacobr@google.com

Review URL: https://codereview.chromium.org/1048873002
2015-03-30 10:46:13 -07:00
John Messerly af714fed80 fix for static methods and names banned in strict mode
* static methods qualified properly
* static method privacy is now enforced
* avoid static method names banned in strict mode
* avoid variable names banned in strict mode

We might want to relax privacy (for both instance and static), but for now it's nice and consistent with instance methods using ES6 Symbol

R=jacobr@google.com

Review URL: https://codereview.chromium.org/1034273003
2015-03-30 10:09:56 -07:00
Jacob Richman a6ca53ee49 fix list literal initialization call fix typeof calls for primitive JS types add dart/collection.js to defaultRuntimeFiles list Enclose switch statement case blocks with braces to insure a block scope matching dart semantics
BUG=
R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1042003002
2015-03-30 09:42:29 -07:00
Patrice Chalin dfff27cf78 Reuse test.sh under Travis and fixed failing test
Now running test.sh under Travis (actually script has been renamed to
`tool/build_and_test.sh` since it built and tested :). Keeping
`test.sh` as alias to build_and_test.sh in case people are used to
using it in the test directory.

Also removed `_visitOrEmpty` to resolve the following analyzer hint (so
that tests would pass):
> [hint] The method '_visitOrEmpty' is not used
(/Users/chalin/git/dev_compiler/lib/src/codegen/js_codegen.dart, line
2028, col 16)
2015-03-27 17:48:48 -07:00
Sigmund Cherem c700972067 Update span dependency: this fixes an issue where span context didn't include
the text

R=jacobr@google.com

Review URL: https://codereview.chromium.org/1039813002
2015-03-27 16:57:37 -07:00
John Messerly 12b3fa3fec Merge pull request #111 from dart-lang/travis_build
run build_sdk.sh from travis
2015-03-27 10:54:00 -07:00
Jacob Richman 0e0cff2e17 Fix try catch crasher bug due to null else case.
BUG=
R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1036333003
2015-03-27 10:53:54 -07:00
John Messerly 75e652bf2b Merge pull request #112 from dart-lang/coverage
fixes #109, code coverage for SDK generation
2015-03-27 10:34:14 -07:00
Kenneth Endfinger 8de526ea70 Update README.md 2015-03-27 11:33:26 -04:00
John Messerly 68aada46f4 run build_sdk.sh from travis
this is done by our test.sh script, but we aren't covering it
2015-03-27 08:25:24 -07:00
John Messerly b292b10b19 fixes #109, code coverage for SDK generation 2015-03-27 08:21:07 -07:00
John Messerly 34e2fbabd7 fix temp used in postfix ops
Review URL: https://codereview.chromium.org/1039243002
2015-03-27 07:26:57 -07:00
John Messerly 2357e3013b more care around generated names, fixes #60 #82 and #97
R=vsm@google.com

Review URL: https://codereview.chromium.org/1030063004
2015-03-26 17:47:31 -07:00
Kevin Moore ea8aef3c4b test both stable and dev branches of SDK, but coverage only on stable 2015-03-27 01:16:20 +01:00
Sigmund Cherem 3ab4f01149 Pass through context information in error messages
R=vsm@google.com

Review URL: https://codereview.chromium.org/1023893004
2015-03-26 15:25:24 -07:00
Patrice Chalin f73b4ec612 Make codegen_test more self contained
Addressed codegen_test `TODO(jmesserly): it'd be nice to do all cleanup
here …`.
2015-03-26 11:52:49 -07:00
John Messerly 48e334237b [js_ast] adds Identifier that merges VariableDeclaration/Use and Parameter
Also changes Printer to not walk the tree an extra time unless we are minifiying.

The tree structure appears to be helping VarCollector, by encoding some information into the static AST structure. (although some aspects were unused, such as function names). It's easy enough to encode this behavior in VarCollector itself. Having a unified Identifier benefits our tree transform, since we don't need to worry about generating three different types of things under largely identical circumstances.

I'm planning to build on this later, but this version is purely a refactor.

R=vsm@google.com

Review URL: https://codereview.chromium.org/1029583011
2015-03-25 16:01:02 -07:00
Vijay Menon 67e4bc583a Rationalize coercions
This breaks out casts / coercions into:

Standard (on by default)
- DynamicCasts: dynamic -> T
- AssignmentCasts: T x = expr; // T must be a ground type

Inference (this will go away)
- InferableLiteral
- InferableClosure
- InferableAllocation

Implicit (no flag yet, but i'll add to disable by default)
- DownCastComposite: Any cast to a non-ground type
- DownCastImplicit: Any other implicit downcast not covered above

A flag is also added to enable/disable all wrapping.  This is not off by default yet, but that is the intent.

R=leafp@google.com

Review URL: https://codereview.chromium.org/1038583004
2015-03-25 14:51:54 -07:00
John Messerly 5306aa2384 Remove PropertyName from js_ast
This was added to our version, while still figuring out js_ast. As it is now, Printer handles property names quite well on its own, so the extra AST node doesn't add anything.

R=vsm@google.com

Review URL: https://codereview.chromium.org/1030243002
2015-03-25 13:28:55 -07:00
Sigmund Cherem 232375de7c Add missing visit methods
R=vsm@google.com

Review URL: https://codereview.chromium.org/1033443003
2015-03-23 16:06:59 -07:00
Sigmund Cherem c24a91895a Migrate to package:html
R=kevmoo@google.com

Review URL: https://codereview.chromium.org/1008533004
2015-03-23 13:28:43 -07:00
Sigmund Cherem 2bf7e0aed8 Transitive inference using SCC
BUG=
R=vsm@google.com

Review URL: https://codereview.chromium.org/1028793002
2015-03-23 13:11:33 -07:00
Vijay Menon 1430655b9e Treat Object and dynamic similarly
Note, this makes: T<dynamic> <: T<Object> and T<Object> <: T<dynamic>.

R=leafp@google.com

Review URL: https://codereview.chromium.org/1024073003
2015-03-20 14:06:13 -07:00