blob: af90ef3641f8c6510c995b2e5bd5f4f76fed7559 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class Closure#main#function extends core::Object implements core::Function {
field core::String note = "This is temporary. The VM doesn't need closure classes.";
field Vector context;
constructor •(final Vector context) dynamic
: self::Closure#main#function::context = context
;
method call(dynamic x) dynamic {
"This is a temporary solution. In the VM, this will become an additional parameter.";
final Vector #contextParameter = this.{self::Closure#main#function::context};
return (#contextParameter[1]).[](x);
}
}
static field dynamic f = null;
static method foo() dynamic {
core::print(self::f.call(0));
}
static method main(dynamic arguments) dynamic {
final Vector #context = MakeVector(2);
#context[1] = arguments;
self::f = new self::Closure#main#function::•(#context);
self::foo();
}