We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Callable
It’d be nice to be able to refine Callable attributes as if they were functions and vice versa. Things that I’d like to see working:
abstract class Foo() { shared formal String(String) surround; } class Bar() extends Foo() { shared actual String surround(String str) => "\{RIGHT DOUBLE QUOTATION MARK}``str``\{LEFT DOUBLE QUOTATION MARK}"; }
abstract class Foo() { shared formal String id(String str); } class Bar() extends Foo() { id = identity<String>; // or // shared formal String id = identity<String>; }
abstract class Foo<T>() { shared formal T member; } class Bar() extends Foo<String(String)>() { shared formal String member(String str) => "\"``string``\""; }
A little harder to support:
abstract class Foo() { shared formal String member(String str); } class Bar() { shared formal String(String) member { if(random()) { retrun(identity<String>); } else { return(function(String str) => str + "!!!"); } } }
The text was updated successfully, but these errors were encountered:
Oops, wrong repo, I’ll migrate this issue to the new repo. Derp.
Sorry, something went wrong.
Shortcut refinement supports both directions already:
abstract class Foo() { shared formal String(String) surround; } class Bar() extends Foo() { surround(String str) => "\{RIGHT DOUBLE QUOTATION MARK}``str``\{LEFT DOUBLE QUOTATION MARK}"; }
try online
abstract class Foo() { shared formal String id(String str); } class Bar() extends Foo() { id = identity<String>; }
abstract class Foo<out T>() { shared formal T member; } class Bar() extends Foo<String(String)>() { member(String str) => "\"``string``\""; }
No branches or pull requests
It’d be nice to be able to refine
Callable
attributes as if they were functions and vice versa. Things that I’d like to see working:A little harder to support:
The text was updated successfully, but these errors were encountered: