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

Move continuation argument to the second position after CPS. #177

Open
Idorobots opened this issue Dec 15, 2023 · 0 comments
Open

Move continuation argument to the second position after CPS. #177

Idorobots opened this issue Dec 15, 2023 · 0 comments

Comments

@Idorobots
Copy link
Owner

Idorobots commented Dec 15, 2023

This will make it easier to leverage vararg function facilities of the target languages such as JS:

const __list = (env, ...args) => {
  const cont = args.last();
  const vals = args.slice(1, args.length() - 1);

  // ... Do something with cont(vals).
}

versus:

const __list = (env, cont, ...vals) => {
  // ... Do something with cont(vals).
}

It also simplifies some of the CPS code.

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

No branches or pull requests

1 participant