Skip to content

Commit

Permalink
Merge pull request #742 from null-a/guide-coro-rm-params
Browse files Browse the repository at this point in the history
Remove unused property from the guide coroutine.
  • Loading branch information
stuhlmueller committed Dec 31, 2016
2 parents 39924b9 + af1e051 commit 940c855
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/guide.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ function guideCoroutine(env) {
// Copy the entry address from the current coroutine so that
// parameter names continue to be relative to it.
a: env.coroutine.a,
// Use params/paramsSeen of the current coroutine so that params
// are fetch/tracked correctly.
params: env.coroutine.params,
// Use paramsSeen of the current coroutine so that params are
// tracked correctly.
paramsSeen: env.coroutine.paramsSeen,
// A flag used when creating parameters to check whether we're in
// a guide thunk. Note that this does the right thing if Infer is
Expand Down

0 comments on commit 940c855

Please sign in to comment.