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
From @bcherny on February 16, 2017 4:48
Steps to Reproduce:
function merge(as, bs) { let res = [] let ia = 0 let ib = 0 while (ia < as.length && ib < bs.length) { // coloring broken if (as[ia] < bs[ib]) { res.push(as[ia++]) // coloring broken } else { res.push(bs[ib++]) // coloring broken } } return res.concat(as.slice(ia)).concat(bs.slice(ib)) // coloring broken } function mergesort(array) { if (array.length < 2) { return array } const mid = Math.floor(array.length / 2) return merge(mergesort(array.slice(0, mid)), mergesort(array.slice(mid))) }
Copied from original issue: microsoft/vscode#20692
The text was updated successfully, but these errors were encountered:
From @kumarharsh on February 16, 2017 7:50
+1. This is weird, as is not even a keyword in JS as far as i know...
as
Sorry, something went wrong.
When I declare a method next for my object, it is not correctly colored (it's blue, but should be yellow).
next
var obj = {}; obj.next = function () {};
I use VSCode 1.10.2 with Dark+ (default dark) theme.
Dark+ (default dark)
7d67d88
No branches or pull requests
From @bcherny on February 16, 2017 4:48
Steps to Reproduce:
Copied from original issue: microsoft/vscode#20692
The text was updated successfully, but these errors were encountered: