e7a10f9424
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 .
A frontend using the Dart analyzer.