@lezer/python
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,7 @@ | ||
## 1.1.1 (2022-10-31) | ||
### Bug fixes | ||
Add missing highlighting info for `match` and `case` keywords. | ||
## 1.1.0 (2022-07-27) | ||
@@ -2,0 +8,0 @@ |
@@ -125,3 +125,3 @@ import { ExternalTokenizer, ContextTracker, LRParser } from '@lezer/lr'; | ||
"async \"*\" \"**\" FormatConversion FormatSpec": tags.modifier, | ||
"for while if elif else try except finally return raise break continue with pass assert await yield": tags.controlKeyword, | ||
"for while if elif else try except finally return raise break continue with pass assert await yield match case": tags.controlKeyword, | ||
"in not and or is del": tags.operatorKeyword, | ||
@@ -128,0 +128,0 @@ "from def class global nonlocal lambda": tags.definitionKeyword, |
{ | ||
"name": "@lezer/python", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Lezer-based Python grammar", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.cjs", |
@@ -5,3 +5,3 @@ import {styleTags, tags as t} from "@lezer/highlight" | ||
"async \"*\" \"**\" FormatConversion FormatSpec": t.modifier, | ||
"for while if elif else try except finally return raise break continue with pass assert await yield": t.controlKeyword, | ||
"for while if elif else try except finally return raise break continue with pass assert await yield match case": t.controlKeyword, | ||
"in not and or is del": t.operatorKeyword, | ||
@@ -8,0 +8,0 @@ "from def class global nonlocal lambda": t.definitionKeyword, |
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
149254