mol_dump_lib 0.0.941 → 0.0.943
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.js +4 -4
- package/node.js.map +1 -1
- package/node.mjs +4 -4
- package/node.test.js +4 -4
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.js +4 -4
- package/web.js.map +1 -1
- package/web.mjs +4 -4
package/package.json
CHANGED
package/web.js
CHANGED
|
@@ -4481,13 +4481,13 @@ var $;
|
|
|
4481
4481
|
'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\(?!\\).*|#!? .*/,
|
|
4482
4482
|
'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
|
|
4483
4483
|
'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
|
|
4484
|
-
'code-call': /\.?\w+
|
|
4484
|
+
'code-call': /\.?\w+(?=\()/,
|
|
4485
4485
|
'code-sexpr': /\((\w+ )/,
|
|
4486
|
-
'code-field': /(?:(
|
|
4487
|
-
'code-keyword':
|
|
4486
|
+
'code-field': /(?:(?<=\.|::|->)[a-z][\w-]*|(?<=[, \t] |\t)[\w-]+\??:(?!\/\/|:))/,
|
|
4487
|
+
'code-keyword': /(?<=^|\t|[ )(}{=] )((throw|readonly|unknown|keyof|typeof|never|from|class|struct|interface|type|function|extends|implements|module|namespace|import|export|include|require|var|val|let|const|for|do|while|until|in|out|of|new|if|then|else|switch|case|return|async|await|yield|try|catch|break|continue|get|set|public|private|protected|void|int|float|ref)( |$|;))+/,
|
|
4488
4488
|
'code-global': /[$]+\w*|\b[A-Z][a-z0-9]+[A-Z]\w*/,
|
|
4489
4489
|
'code-word': /\w+/,
|
|
4490
|
-
'code-decorator':
|
|
4490
|
+
'code-decorator': /(?<=^| |\t)@\s*\S+/,
|
|
4491
4491
|
'code-tag': /<\/?[\w-]+\/?>?|&\w+;/,
|
|
4492
4492
|
'code-punctuation': /[\-\[\]\{\}\(\)<=>~!\?@#%&\*_\+\\\/\|;:\.,\^]+?/,
|
|
4493
4493
|
});
|