codemirror
Advanced tools
Comparing version 5.65.11 to 5.65.12
@@ -23,3 +23,3 @@ // CodeMirror, copyright (c) by Marijn Haverbeke and others | ||
"lambda", "pass", "raise", "return", | ||
"try", "while", "with", "yield", "in"]; | ||
"try", "while", "with", "yield", "in", "False", "True"]; | ||
var commonBuiltins = ["abs", "all", "any", "bin", "bool", "bytearray", "callable", "chr", | ||
@@ -64,3 +64,3 @@ "classmethod", "compile", "complex", "delattr", "dict", "dir", "divmod", | ||
var identifiers = parserConf.identifiers|| /^[_A-Za-z\u00A1-\uFFFF][_A-Za-z0-9\u00A1-\uFFFF]*/; | ||
myKeywords = myKeywords.concat(["nonlocal", "False", "True", "None", "async", "await"]); | ||
myKeywords = myKeywords.concat(["nonlocal", "None", "aiter", "anext", "async", "await", "breakpoint", "match", "case"]); | ||
myBuiltins = myBuiltins.concat(["ascii", "bytes", "exec", "print"]); | ||
@@ -73,3 +73,3 @@ var stringPrefixes = new RegExp("^(([rbuf]|(br)|(rb)|(fr)|(rf))?('{3}|\"{3}|['\"]))", "i"); | ||
"file", "intern", "long", "raw_input", "reduce", "reload", | ||
"unichr", "unicode", "xrange", "False", "True", "None"]); | ||
"unichr", "unicode", "xrange", "None"]); | ||
var stringPrefixes = new RegExp("^(([rubf]|(ur)|(br))?('{3}|\"{3}|['\"]))", "i"); | ||
@@ -76,0 +76,0 @@ } |
{ | ||
"name": "codemirror", | ||
"version": "5.65.11", | ||
"version": "5.65.12", | ||
"main": "lib/codemirror.js", | ||
@@ -8,3 +8,3 @@ "style": "lib/codemirror.css", | ||
"name": "Marijn Haverbeke", | ||
"email": "marijnh@gmail.com", | ||
"email": "marijn@haverbeke.berlin", | ||
"url": "http://marijnhaverbeke.nl" | ||
@@ -11,0 +11,0 @@ }, |
@@ -69,2 +69,2 @@ // EDITOR CONSTRUCTOR | ||
CodeMirror.version = "5.65.11" | ||
CodeMirror.version = "5.65.12" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
2958344