Skip to content

Instantly share code, notes, and snippets.

@yelouafi
Last active June 30, 2016 00:15
Show Gist options
  • Save yelouafi/1cc3b75c90b1ecd8a29f668d29f3e9e8 to your computer and use it in GitHub Desktop.
Save yelouafi/1cc3b75c90b1ecd8a29f668d29f3e9e8 to your computer and use it in GitHub Desktop.
syntax seq = function (ctx) {
let monad = ctx.next().value;
let bodyCtx = ctx.next().value.inner();
function next() {
let result
let n = bodyCtx.next()
if(n.done) return #``
let stx = n.value
if (stx.isIdentifier()) {
// eat `:<-`
bodyCtx.next();
bodyCtx.next();
let r = bodyCtx.next('expr').value;
return #`${r}.chain(x => { let ${stx} = x; let ret = ${next()}; return ret; })`;
} else if (stx.isKeyword('return')) {
let r = bodyCtx.next('expr').value;
return #`${monad}.of(${r})`;
} else {
throw new Error('unknown syntax: ' + stx);
}
}
return next()
}
//let x = null;
seq Array {
x <- [1,2,3]
y <- [2,4,6]
z <- [3,6,9]
return x + y + z
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment