We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I noticed that raw strings from tagged templates are incorrect when we have nested templates like following (iojs 2.1.0, V8 4.2.77.20):
function tag(strings) { return strings.raw } tag`1 ${ `2` } 3` // => expect [ '1', '3' ], but got [ '2', ' 3' ]
I test it in Chrome 43.0.2357.81 (V8 4.3.61.23) and works as expected.
Therefore, I guess it's a bug from V8 and it would be fixed when iojs upgrades to newer V8.
The text was updated successfully, but these errors were encountered:
The above testcase works with the next branch. #1807 #1632
next
I assume that this is fixed in 3.0 (v8 4.3.x).
Sorry, something went wrong.
If this is fixed in next, is anyone opposed to closing this?
I'll close it, there's nothing actionable.
No branches or pull requests
I noticed that raw strings from tagged templates are incorrect when we have nested templates like following (iojs 2.1.0, V8 4.2.77.20):
I test it in Chrome 43.0.2357.81 (V8 4.3.61.23) and works as expected.
Therefore, I guess it's a bug from V8 and it would be fixed when iojs upgrades to newer V8.
The text was updated successfully, but these errors were encountered: