Skip to content
New issue

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

Default values for generic parameters #1054

Open
ssalbdivad opened this issue Jul 18, 2024 · 1 comment
Open

Default values for generic parameters #1054

ssalbdivad opened this issue Jul 18, 2024 · 1 comment
Assignees

Comments

@ssalbdivad
Copy link
Member

Would allow parsing the equivalent syntax from TS:

const array = type("<t = unknown>", "t[]");

// unknown[]
const a = array();
// string[]
const b = array("string");

const types = scope({
  "array<t = unknown>": "t[]",
  // unknown[]
  a: "array",
  // string[]
  b: "array<string>",
}).export();
@ssalbdivad
Copy link
Member Author

Should also add defaulted generic parameters for some of our existing instance types like Set, Map and Array.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Planned
Development

No branches or pull requests

2 participants