lang: Add function values and lambdas
This adds a giant missing piece of the language: proper function values! It is lovely to now understand why early programming language designers didn't implement these, but a joy to now reap the benefits of them. In adding these, many other changes had to be made to get them to "fit" correctly. This improved the code and fixed a number of bugs. Unfortunately this touched many areas of the code, and since I was learning how to do all of this for the first time, I've squashed most of my work into a single commit. Some more information: * This adds over 70 new tests to verify the new functionality. * Functions, global variables, and classes can all be implemented natively in mcl and built into core packages. * A new compiler step called "Ordering" was added. It is called by the SetScope step, and determines statement ordering and shadowing precedence formally. It helped remove at least one bug and provided the additional analysis required to properly capture variables when implementing function generators and closures. * The type unification code was improved to handle the new cases. * Light copying of Node's allowed our function graphs to be more optimal and share common vertices and edges. For example, if two different closures capture a variable $x, they'll both use the same copy when running the function, since the compiler can prove if they're identical. * Some areas still need improvements, but this is ready for mainstream testing and use!
This commit is contained in:
@@ -53,6 +53,13 @@ type Init struct {
|
||||
// never change to avoid the overhead of the goroutine and channel listener?
|
||||
type Func interface {
|
||||
Validate() error // FIXME: this is only needed for PolyFunc. Get it moved and used!
|
||||
|
||||
// Info returns some information about the function in question, which
|
||||
// includes the function signature. For a polymorphic function, this
|
||||
// might not be known until after Build was called. As a result, the
|
||||
// sig should be allowed to return a partial or variant type if it is
|
||||
// not known yet. This is because the Info method might be called
|
||||
// speculatively to aid in type unification.
|
||||
Info() *Info
|
||||
Init(*Init) error
|
||||
Stream() error
|
||||
@@ -99,5 +106,5 @@ type NamedArgsFunc interface {
|
||||
|
||||
// ArgGen implements the arg name generator function. By default, we use
|
||||
// the util.NumToAlpha function when this interface isn't implemented...
|
||||
ArgGen(int) string
|
||||
ArgGen(int) (string, error)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user