Files
sdk/pkg/kernel/lib/analyzer
Asger Feldthaus e7a10f9424 [kernel] Put the interface target on implied .call invocations.
Example from js_ast:

  class JsBuilder {
  	Node call(x) => ...
  }
  const JsBuilder js = const JsBuilder();

In codegen:
  js("#.#", ...)

Translated to kernel:
  js.call("#.#", ...) // JsBuilder::call as interface target

BUG=
R=kmillikin@google.com

Review URL: https://chromereviews.googleplex.com/502947013 .
2016-09-07 13:37:25 +02:00
..

A frontend using the Dart analyzer.