Files
sdk/pkg/compiler/lib/src
Stephen Adams 2afecb210b [dart2js] Register legacy classes if instantiated in JS()
This change makes sure that

    JS('JavaScriptFunction', '...', ...)

actually registers `JavaScriptFunction` and its superclass `LegacyJavaScriptObject` as instantiated.

Bug: #56533
Change-Id: I977f149cff97b0a5f42d69f303664f5a70cb401c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/381820
Reviewed-by: Mayank Patke <fishythefish@google.com>
Commit-Queue: Stephen Adams <sra@google.com>
2024-08-22 19:44:08 +00:00
..
2023-04-07 21:54:44 +00:00
2024-07-08 11:32:30 +00:00
2024-07-08 11:32:30 +00:00
2022-09-16 19:35:00 +00:00
2022-04-15 22:30:34 +00:00
2022-04-23 03:13:59 +00:00
2022-11-21 20:07:29 +00:00

Dart2JS is the Dart-to-JavaScript compiler for Dart. This compiler
will provide high-quality translation from Dart to JavaScript.

Some areas that will explored in this project are:

   * high-performance extensible scanner and parser
   * concrete type inferencing
   * fancy language tool support
   * programming environment integration
   * SSA-based intermediate representation
   * adaptive compilation on the client