-
-
Notifications
You must be signed in to change notification settings - Fork 141
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
js operators #79
Merged
Merged
js operators #79
Commits on Oct 2, 2022
-
migrate atom/language-javascript#686
The non-tree sitter version is almost completely copied so nothing to say there. There are some inconsistencies/missing operators in the tree-sitter version, for example: - `this` - `new.target` - `import.meta` - The keyword.operator order looks more wrong the more I look at it but that's for another day because of the possible scope regularity change in the future: atom/language-javascript#690 - btw atom/language-javascript#691 looks good to me I should probably do that Even though tree-sitter will have some above changes I added the new operators (`** **= ?? &&= ||= ??= void`) anyway. Well `void` is not new it's just missing. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators for a list of operators. Of course while the comma is technically an operator, hopefully it's used more to separate elements in arrays or properties in objects. Also `delete` is an operator not control.
Configuration menu - View commit details
-
Copy full SHA for 18d1f19 - Browse repository at this point
Copy the full SHA 18d1f19View commit details
Commits on Dec 19, 2022
-
?. is illegal in new update console methods timeStamp has the same support as profile and both are nonstandard so they're both included update global classes Wait a minute, Generator and GeneratorFunction are _not_ global... so actually just any class specified in ECMA262 non global additions: - AsyncFunction - AsyncGeneratorFunction - TypedArray luckily MDN's sidebar of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis shows all of these Wait... JSON? That's not a class Math has the scope support.class.math.js for some reason so I guess add "json" likewise for json Never knew about WeakRef and FinalizationRegistry Wonder why it's so unknown; this is a common idea in Rust at least.... So yeah, JSON is separate just like Math Lots of copying and pasting rest vs spread depends on context I don't know why that test failed
Configuration menu - View commit details
-
Copy full SHA for aca05b5 - Browse repository at this point
Copy the full SHA aca05b5View commit details
Commits on Jan 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c2cfede - Browse repository at this point
Copy the full SHA c2cfedeView commit details
Commits on Feb 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 647c720 - Browse repository at this point
Copy the full SHA 647c720View commit details
Commits on Feb 15, 2023
-
given that the entire Relay.QL was entity.name.function, it's not surprising here Therefore this pr just adds "meta.delimiter.<>" to the delimiter in Relay.QL or Relay?.QL
Configuration menu - View commit details
-
Copy full SHA for 60f63ba - Browse repository at this point
Copy the full SHA 60f63baView commit details
Commits on Mar 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a6828b1 - Browse repository at this point
Copy the full SHA a6828b1View commit details
Commits on May 16, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c7a90cb - Browse repository at this point
Copy the full SHA c7a90cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for dc432a5 - Browse repository at this point
Copy the full SHA dc432a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4dde985 - Browse repository at this point
Copy the full SHA 4dde985View commit details -
Configuration menu - View commit details
-
Copy full SHA for e3f1cb7 - Browse repository at this point
Copy the full SHA e3f1cb7View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.