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

Prefix all operations that may have abrupt completions with `?`, even in Return positions #246

Closed
ljharb opened this Issue Dec 11, 2015 · 0 comments

Comments

Projects
None yet
1 participant
@ljharb
Member

ljharb commented Dec 11, 2015

Per https://github.com/tc39/ecma262/pull/220/files#r47389417, any operation that might throw or have an abrupt completion should be prefixed with a ?, even in Return positions (ie, any Return Foo() where Let _status_ be ? Foo(); \n Return _status_ is equivalent, should be Return ? Foo())

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