mol_dump_lib 0.0.942 → 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 CHANGED
@@ -5690,13 +5690,13 @@ var $;
5690
5690
  'code-comment-inline': /\/\/.*?(?:$|\/\/)|- \\(?!\\).*|#!? .*/,
5691
5691
  'code-string': /(?:".*?"|'.*?'|`.*?`| ?\\\\.+?\\\\|\/.+?\/[dygimsu]*(?!\p{Letter})|[ \t]*\\[^\n]*)/u,
5692
5692
  'code-number': /[+-]?(?:\d*\.)?\d+\w*/,
5693
- 'code-call': /\.?\w+ *(?=\()/,
5693
+ 'code-call': /\.?\w+(?=\()/,
5694
5694
  'code-sexpr': /\((\w+ )/,
5695
- 'code-field': /(?:(?:\.|::|->)\w+|[\w-]+\??\s*:(?!\/\/|:))/,
5696
- 'code-keyword': /\b(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|this|return|async|await|yield|try|catch|break|continue|get|set|public|private|protected|string|boolean|number|null|undefined|true|false|void|int|float|ref)\b/,
5695
+ 'code-field': /(?:(?<=\.|::|->)[a-z][\w-]*|(?<=[, \t] |\t)[\w-]+\??:(?!\/\/|:))/,
5696
+ '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)( |$|;))+/,
5697
5697
  'code-global': /[$]+\w*|\b[A-Z][a-z0-9]+[A-Z]\w*/,
5698
5698
  'code-word': /\w+/,
5699
- 'code-decorator': /@\s*\S+/,
5699
+ 'code-decorator': /(?<=^| |\t)@\s*\S+/,
5700
5700
  'code-tag': /<\/?[\w-]+\/?>?|&\w+;/,
5701
5701
  'code-punctuation': /[\-\[\]\{\}\(\)<=>~!\?@#%&\*_\+\\\/\|;:\.,\^]+?/,
5702
5702
  });