For an embedded DSL I want classes to behave like a function. It seems easy for instances (https://www.dartlang.org/articles/emulating-functions/) but I couldn't make it happen for classes. I tried creating a static call a method but this didn't work either.
Is there a way or do I have to give the class another name and make Pconst a function, calling the constructor?
class Pconst {
final value;
Pconst(this.value);
static Pconst call(value) => new Pconst(value);
String toString() => "Pconst($value)";
}
void main() {
var test = Pconst(10);
// Breaking on exception: Class '_Type' has no instance method 'call'.
print("Hello, $test");
}
The
call()
method is special, in that anyone who defines acall()
method is presumed to dynamically emulate a function. This allows us to use instances ofTestA
as if they were functions that take two integer arguments.I'd try something like this:
so your basically just hiding/wrapping your classes constructor behind a bog standard function.