Files
sdk/tests/language
sigurdm@google.com cf906beba3 dart2js: Fix of deferred static functions.
When deferred static functions go to a different output hunk than the
class they are defined in the emitter got problems with outputting them.

We could say that static functions always go to the same output-unit as
their class, and this is needed to support reflection. But we already
handle it that way when reflection is needed. In deferred_load.dart:

      void addLiveInstanceMember(Element element) {
        if (!compiler.enqueuer.resolution.hasBeenResolved(element)) return;
        if (!isMirrorUsage && !element.isInstanceMember) return;
        collectDependencies(element.implementation);
      }

R=floitsch@google.com

Review URL: https://codereview.chromium.org//810473003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42389 260f80e4-7a28-3924-810f-c04153c831b5
2014-12-16 13:14:35 +00:00
..
2014-04-08 22:40:18 +00:00
2014-10-14 19:58:06 +00:00
2014-08-18 18:41:12 +00:00
2014-03-12 14:39:27 +00:00
2014-05-08 10:30:37 +00:00
2014-03-07 10:51:39 +00:00
2014-11-25 18:38:58 +00:00
2014-07-07 16:38:51 +00:00
2014-05-20 16:41:37 +00:00