@codemirror/lang-javascript
Advanced tools
Comparing version 0.19.2 to 0.19.3
@@ -0,1 +1,7 @@ | ||
## 0.19.3 (2021-11-12) | ||
### Bug fixes | ||
Add styling for private properties. | ||
## 0.19.2 (2021-09-23) | ||
@@ -2,0 +8,0 @@ |
@@ -101,6 +101,8 @@ import { parser } from '@lezer/javascript'; | ||
PropertyName: tags.propertyName, | ||
PrivatePropertyName: /*@__PURE__*/tags.special(tags.propertyName), | ||
"CallExpression/MemberExpression/PropertyName": /*@__PURE__*/tags.function(tags.propertyName), | ||
"FunctionDeclaration/VariableDefinition": /*@__PURE__*/tags.function(/*@__PURE__*/tags.definition(tags.variableName)), | ||
"ClassDeclaration/VariableDefinition": /*@__PURE__*/tags.definition(tags.className), | ||
PropertyNameDefinition: /*@__PURE__*/tags.definition(tags.propertyName), | ||
PropertyDefinition: /*@__PURE__*/tags.definition(tags.propertyName), | ||
PrivatePropertyDefinition: /*@__PURE__*/tags.definition(/*@__PURE__*/tags.special(tags.propertyName)), | ||
UpdateOp: tags.updateOperator, | ||
@@ -107,0 +109,0 @@ LineComment: tags.lineComment, |
{ | ||
"name": "@codemirror/lang-javascript", | ||
"version": "0.19.2", | ||
"version": "0.19.3", | ||
"description": "JavaScript language support for the CodeMirror code editor", | ||
@@ -35,3 +35,3 @@ "scripts": { | ||
"@codemirror/view": "^0.19.0", | ||
"@lezer/javascript": "^0.15.0" | ||
"@lezer/javascript": "^0.15.1" | ||
}, | ||
@@ -38,0 +38,0 @@ "devDependencies": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31831
504
Updated@lezer/javascript@^0.15.1