Files
sdk/lib/compiler/implementation
2012-04-26 15:54:55 +00:00
..
2012-04-26 00:23:45 +00:00
2012-04-17 11:26:25 +00:00
2012-04-24 15:24:00 +00:00
2012-04-24 15:24:00 +00:00
2012-03-28 16:07:58 +00:00
2012-04-25 14:23:51 +00:00
2012-04-18 08:29:42 +00:00
2012-04-26 11:02:41 +00:00
2012-04-18 10:27:32 +00:00

Leg is an experimental add-on to the Frog compiler that aims to
explore areas of long-term interest:

   * 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
   * ...

Some of the things listed above are very experimental of nature and
may prove themselves infeasible or unnecesary, so we want to work on
them in a way that guarantees we will not disrupt the work being done
to make Frog a fantastic compiler for Dart in its default setup.

To keep things simple and allow quick experimentation, Leg will only
support a subset of Dart and fall back on using the default Frog
compiler for the remaining parts of the language. We expect Leg to be
a complete and correct implementation of the supported subset
throughout the implementation and experimentation so you should always
be able to try Leg on any Dart project.

The plan is to share code between the default Frog compiler and Leg
where it makes sense and to learn from both code bases along the way.