Commit Graph

2821 Commits

Author SHA1 Message Date
Leaf Petersen 406e68ccec Check whether type parameters are loaded before emitting.
This fixes #190.

BUG=
R=vsm@google.com

Review URL: https://codereview.chromium.org/1143253003
2015-05-20 09:47:39 -07:00
Vijay Menon 0ce490561c Type check binary expressions
Fixes #188

R=leafp@google.com

Review URL: https://codereview.chromium.org/1137543005
2015-05-20 09:24:16 -07:00
John Messerly 772f6f6d1b fixes #185, track const ctor dependencies, plus a static field fix
R=vsm@google.com

Review URL: https://codereview.chromium.org/1141663003
2015-05-20 09:19:08 -07:00
Leaf Petersen 8040611a79 This CL implements tagging of functions and methods with function types.
For every class, we now generate a setSignature call which attaches properties to the constructor recording the method signatures, the static function signatures, and the names of all of the static methods. This call also attaches a getter to every static method which returns the type of the function.  Methods are only decorated with runtime types when torn off.  At a tear-off, the type is looked up in the constructor, and then attached to the bound function.

Top level functions and statement level functions get annotated with their type immediately after their declaration.  We could consider moving all of the top level function annotations to the end of the file, but for now I've left it inline.

Closures (function expressions) get wrapped in calls to a dart.fn helper, with type information attached in one of various forms.  This is currently the least attractive part of this CL.  We may want to iterate on the syntax for this.

I've added some support for NSM checking to the dsend/dcall case as well.

We may wish to iterate on the syntax, and on the runtime representation of types, but this should move us forward from a functionality standpoint.

BUG=
R=jmesserly@google.com, vsm@google.com

Review URL: https://codereview.chromium.org/1138793002
2015-05-19 16:24:35 -07:00
Vijay Menon 6c7b497346 Bump to the latest analyzer
R=leafp@google.com

Review URL: https://codereview.chromium.org/1138993010
2015-05-19 14:24:45 -07:00
John Messerly 918ee6636d fixes #187, implicit html, as well as server messages not printing
R=vsm@google.com

Review URL: https://codereview.chromium.org/1136293005
2015-05-19 13:44:31 -07:00
John Messerly 08fb2161f7 fixes #184, type literals now use emitTypeName
this fixes `dart.dynamic` as well as other cases covered by emitTypeName

R=vsm@google.com

Review URL: https://codereview.chromium.org/1142713004
2015-05-18 13:41:25 -07:00
John Messerly 01d39ba3f2 cleanup: simplify creation of AnalysisContext
removes TypeResolver class, introduces function to create analysis context, simplifies a few other things around mock vs real SDK sources.

R=vsm@google.com

Review URL: https://codereview.chromium.org/1143683002
2015-05-18 10:20:29 -07:00
John Messerly b0ff84eedc fixes #183, remove our InMemory* in favor of analyzer's impl
this should improve test coverage too, as analyzer's MemoryResourceProvider/ResourceUriResolver matches the real semantics more closely than ours did.

R=sigmund@google.com

Review URL: https://codereview.chromium.org/1146503003
2015-05-15 11:17:24 -07:00
Vijay Menon 54db808405 Promote analyzer warnings to ddc errors
This is perhaps a blunt hammer, but every warning i'm hitting in angular so far should be an error in ddc.

R=leafp@google.com

Review URL: https://codereview.chromium.org/1133663006
2015-05-15 09:47:14 -07:00
John Messerly ebf297456b isLoaded can now handle elements from other libraries
Review URL: https://codereview.chromium.org/1141133002
2015-05-14 16:44:16 -07:00
John Messerly f728691ac8 Fixes #179 -- compile error if editing files during server mode
this avoids reloading file contents many times during a compile. `.contents.data` == bad!
also fixes #73, using Analyzer's LineInfo instead of FileSpan to avoid finding line breaks over and over
I did some manual testing on sunflower as well as diffing SDK messages before and after

The one baseline change (23 -> 22) seems more accurate than it was before.

R=vsm@google.com

Review URL: https://codereview.chromium.org/1141013002
2015-05-14 16:42:33 -07:00
John Messerly 995e0f0bb3 remove #177 workaround
this issue was fixed

R=vsm@google.com

Review URL: https://codereview.chromium.org/1142553002
2015-05-14 16:02:39 -07:00
Vijay Menon 3377d2b7c5 Angular workarounds
- Workaround for symbolized methods (e.g., core.$map)
- dload/dput workarounds
- NSM workaround
- generic method type check workarounds

R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1131143002
2015-05-14 12:47:32 -07:00
Vijay Menon 2749eaa496 Summarize only per logging level
This prunes out INFO messages by default - they end up being a substantial chunk of the payload in server mode.  You can still serve them up by passing '-l ALL' or '-l INFO'.

R=leafp@google.com

Review URL: https://codereview.chromium.org/1126243004
2015-05-14 10:46:35 -07:00
Vijay Menon 7ca96fd202 Revert "Update runtime tests"
TBR=jmesserly@google.com

Review URL: https://codereview.chromium.org/1141873003
2015-05-14 09:57:57 -07:00
John Messerly ef1739d8eb Make typedefs lazy again
reverts part of https://github.com/dart-lang/dev_compiler/commit/3dcea8bf156b3947c4dbf4b36da55a64cd9dc492
On its own, it's probably okay, but trips on other issues we have w.r.t. JsName types and NoInterfaceObject apis

R=vsm@google.com

Review URL: https://codereview.chromium.org/1135883004
2015-05-14 09:45:41 -07:00
Vijay Menon b013a71e30 Create html if needed in server mode
This allows just serving up a dart file:

dart ./bin/devc.dart --server foo.dart

R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1130093007
2015-05-14 09:26:19 -07:00
Vijay Menon c569af4ba8 Update runtime tests
TBR=jmesserly@google.com

Review URL: https://codereview.chromium.org/1143433002
2015-05-13 08:54:30 -07:00
Sigmund Cherem dfdaff85bb Load time improvements (fixes #140):
- move hash to a query parameter (it works!)
- do widget request later, let app render/loading in case the request is fast
enough.

R=vsm@google.com

Review URL: https://codereview.chromium.org/1131933003
2015-05-12 16:53:32 -07:00
John Messerly aba85e3d9f fixes #131, use before define from variables to classes
Factored the load order logic into its own file, as it was easier to work with that way. We could definitely tweak the structure.

Also tried hoisting constants out to top level, but it's not quite ready yet, so splitting that work out into a separate CL.

(also fixes #152 about cleaning up lazyClass, and fixes #181 about static fields)

R=vsm@google.com

Review URL: https://codereview.chromium.org/1133593004
2015-05-12 11:47:36 -07:00
John Messerly 32f3c78b82 fix temps that have the same name to have different Elements
this was happening because we picked up an == operator from analyzer's Element

also adds an assert, because I took way too much time figuring out what the heck was happening there :)

R=vsm@google.com

Review URL: https://codereview.chromium.org/1139673005
2015-05-11 16:40:16 -07:00
Vijay Menon 286a2f36c5 Fixes #178
Expand out constructor call if needed.

R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1135543003
2015-05-11 10:56:11 -07:00
Vijay Menon c1d7b44212 Return obj in setType
We use the pattern:
  var x = dart.setType([1, 2, 3], List$(int));
in generated code.

R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1140523002
2015-05-11 09:49:21 -07:00
John Messerly a7c860173c fixes #177, FunctionDeclarationStatement and closing over this
R=vsm@google.com

Review URL: https://codereview.chromium.org/1132113003
2015-05-08 14:52:52 -07:00
John Messerly ef8edb1273 fixes #175, fixed arrays
R=vsm@google.com

Review URL: https://codereview.chromium.org/1138533003
2015-05-08 14:33:37 -07:00
John Messerly da208152ea fixes #157, renaming local library identifiers if needed.
readability regression, but fairly simple fix. looks okay in libraries with few imports, bad if they have a lot. ultimately I think this gets cleaned up as part of emitting modules + handling module lowering in JS codegen, see issue #34.

R=vsm@google.com

Review URL: https://codereview.chromium.org/1122133003
2015-05-06 13:47:38 -07:00
Leaf Petersen bf567bb94b Typing fixes to eliminate casts/dcalls
Tightens up some typing issues (mostly in the collections) to eliminate some casts and dynamic calls.  Also adds inference through parenthesized expressions.

BUG=
R=vsm@google.com

Review URL: https://codereview.chromium.org/1122313002
2015-05-05 16:47:19 -07:00
John Messerly a281dba3f5 fixes #158, precendence of call and access in new
R=vsm@google.com

Review URL: https://codereview.chromium.org/1122283002
2015-05-05 14:55:02 -07:00
Leaf Petersen 071e6d0d46 SDK fixes
This fixes all of the static errors from generating the SDK except those in the _interceptors library, and a set of errors associated with checks of the form (v is E) for generic type parameter E.  Most of the fixes consist of adding missing generic parameters, or making overrides consistent.  There are a few fixes to resolve issues around code that moved implicitly between hidden implementation classes and their public API classes, and some other miscellaneous fixes.

All of my changes are in the tool/input_sdk directory - the rest of the diff is generated code.

BUG=
R=vsm@google.com

Review URL: https://codereview.chromium.org/1112403004
2015-05-05 10:58:33 -07:00
Leaf Petersen 3161bc578e Inference through conditional expressions.
Push type info down through conditional expressions.  This eliminates some casts (mostly due to a bug in the analyzer lub code).

BUG=
R=vsm@google.com

Review URL: https://codereview.chromium.org/1121993004
2015-05-05 10:47:42 -07:00
John Messerly 9d32ea0069 fixes #147, add this and super to isStateless
R=jacobr@google.com

Review URL: https://codereview.chromium.org/1117373002
2015-05-05 09:16:56 -07:00
John Messerly c58318a8ef fixes #130, accept anything with iterator in for loops
R=vsm@google.com

Review URL: https://codereview.chromium.org/1126713002
2015-05-05 09:06:45 -07:00
Vijay Menon 1a0efac4e5 Do not suppress implicit constructors that need a super call.
This fixes a bug creating an _AsyncCompleter (_Completer.future was not being initialized).

R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1122883002
2015-05-04 14:50:34 -07:00
John Messerly b0899d64df fixes #150, broken code in js_number.dart
R=vsm@google.com

Review URL: https://codereview.chromium.org/1121853002
2015-05-01 14:37:19 -07:00
John Messerly 36373f06f2 add checks needed for covariant generics, and fixes #154, List<E> now has the right runtime type.
R=leafp@google.com

Review URL: https://codereview.chromium.org/1117793002
2015-05-01 14:11:52 -07:00
Vijay Menon da405c9357 Fix some static member emits
Fixes:
- Lazy static fields - Jmesserly's suggestion from a previous cl
- Private named constructors (was failing at runtime in angular)

R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1117333002
2015-05-01 11:34:15 -07:00
Vijay Menon d9298be76c Treat our type objects as core.Type and other minor fixes
R=leafp@google.com

Review URL: https://codereview.chromium.org/1099703003
2015-05-01 10:26:46 -07:00
John Messerly 56c75ff912 fix #159, static renames for caller/arguments
R=jacobr@google.com

Review URL: https://codereview.chromium.org/1111803005
2015-04-29 16:07:37 -07:00
John Messerly dc4b3d5be9 fix static members in _emitMemberName
static/top-levels don't need extension method, operator renames, or different slots* for private members

(static members are qualified by the static type, so they aren't ambiguous, e.g. Foo._foo and Bar._foo where Foo and Bar are in same/different libraries)

R=jacobr@google.com

Review URL: https://codereview.chromium.org/1111863002
2015-04-29 14:45:14 -07:00
John Messerly ff2749c270 small refactor: use JS.* prefix for our other JS extensions
it's not clear what will end up in js_ast vs ddc, so nice to use js_ast conventions for the JS nodes

R=jacobr@google.com

Review URL: https://codereview.chromium.org/1111893002
2015-04-29 14:41:48 -07:00
John Messerly 83a40f41c8 patch_sdk: fix part/import order
gets rid of one case of errors

R=leafp@google.com

Review URL: https://codereview.chromium.org/1104753002
2015-04-27 16:56:07 -07:00
John Messerly 63be67e05a fix ClassTypeAlias extends
R=vsm@google.com

Review URL: https://codereview.chromium.org/1083383006
2015-04-24 16:06:25 -07:00
Vijay Menon 0d49f0175a Generate static calls for Object fields and methods
R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1100633006
2015-04-23 14:23:39 -07:00
John Messerly 5af860f9ac fix #155, numeric integer literals
R=jacobr@google.com

Review URL: https://codereview.chromium.org/1090613006
2015-04-23 13:43:53 -07:00
Jacob Richman e19f967ce0 Fix Array constructor bug impacting dart2js and ddc running on the same page.
BUG=
R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1094243007
2015-04-23 13:19:39 -07:00
John Messerly 5a1c3bacfa small refactor to move JsPeer code out of _finishClassDef
Nothing wrong with it there, but it was tangled up with the _emitClassIfNeeded code I'm trying to fix for use-before-define issues. Also _finishClassDef's reason for existing is shared code between FunctionTypeAlias/ClassTypeAlias/ClassDeclaration, so the fact that only one of those cares about jsPeer was a sign.

(My first thought was actually _finishClassMembers, but discovered the generics issue: https://github.com/dart-lang/dev_compiler/issues/154)

R=jacobr@google.com

Review URL: https://codereview.chromium.org/1061543004
2015-04-23 10:17:14 -07:00
John Messerly a127bab753 canonicalize const
R=vsm@google.com

Review URL: https://codereview.chromium.org/1099333002
2015-04-23 09:12:26 -07:00
Jacob Richman 2a1e4985d4 fuse List and js Array together and a few other misc fixes.
BUG=
R=jmesserly@google.com

Review URL: https://codereview.chromium.org/1071393007
2015-04-22 17:23:31 -07:00
John Messerly 36518b8cfb fixes #146, JS globals were not understood by the renamer
there are two basic strategies to fix: we either provide globals to the renamer, or it determines them based on use. I went with the second approach, as it fits more naturally with the current code generator.

R=vsm@google.com

Review URL: https://codereview.chromium.org/1099813006
2015-04-22 10:43:54 -07:00