@luxonis/visualizer-protobuf 2.0.1 → 2.0.2
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/dist/{clike-BjlaHgsH.js → clike-CS-poxoD.js} +2 -0
- package/dist/{groovy-BD9p_7sW.js → groovy-ioGz2WSV.js} +2 -4
- package/dist/{index-BarbRpkf.js → index-9D6nsmX0.js} +2 -1
- package/dist/{index-D_KeDxU5.js → index-B68UDyAv.js} +11699 -5049
- package/dist/{index-Bg_SBKcj.js → index-B7v9Ptl2.js} +2 -1
- package/dist/{index-CdE_fknn.js → index-BHmiJ5Qk.js} +2 -1
- package/dist/{index-D6Z2XgEd.js → index-By6lF-Xz.js} +2 -1
- package/dist/{index-CKhCSBGi.js → index-ByP7YJPY.js} +2 -1
- package/dist/{index-BS1BKdpU.js → index-C04gVVoP.js} +2 -1
- package/dist/{index-DFFtL_uP.js → index-CLESgVaD.js} +2 -1
- package/dist/{index-MKv43hnI.js → index-CX_Do7kl.js} +2 -1
- package/dist/{index-BPkCb-qN.js → index-CXwbrQKL.js} +2 -1
- package/dist/{index-DULznPlC.js → index-CsJJiZos.js} +2 -1
- package/dist/{index-XkjbxWyS.js → index-CsyZMo6w.js} +2 -1
- package/dist/{index-COiPTu-O.js → index-D502DL2z.js} +2 -1
- package/dist/{index-D8Bx_kL-.js → index-Ddm491YR.js} +2 -1
- package/dist/{index-PZaaEO31.js → index-SWsY2eOm.js} +5 -4
- package/dist/{index-C1jY05Dy.js → index-T_ckFaRN.js} +2 -1
- package/dist/{index-sK4DWbBt.js → index-WSNQlHZC.js} +2 -1
- package/dist/{index-D7G90Nuw.js → index-qrTNSyOQ.js} +3 -2
- package/dist/{index-CLrFiqp0.js → index-uD6dIRaN.js} +6 -5
- package/dist/index.js +2 -1
- package/package.json +2 -2
|
@@ -968,6 +968,8 @@ const dart = clike({
|
|
|
968
968
|
blockKeywords: words("try catch finally do else for if switch while"),
|
|
969
969
|
builtin: words("void bool num int double dynamic var String Null Never"),
|
|
970
970
|
atoms: words("true false null"),
|
|
971
|
+
// clike numbers without the suffixes, and with '_' separators.
|
|
972
|
+
number: /^(?:0x[a-f\d_]+|(?:[\d_]+\.?[\d_]*|\.[\d_]+)(?:e[-+]?[\d_]+)?)/i,
|
|
971
973
|
hooks: {
|
|
972
974
|
"@": function(stream) {
|
|
973
975
|
stream.eatWhile(/[\w\$_\.]/);
|
|
@@ -115,10 +115,8 @@ function tokenBaseUntilBrace() {
|
|
|
115
115
|
|
|
116
116
|
function tokenVariableDeref(stream, state) {
|
|
117
117
|
var next = stream.match(/^(\.|[\w\$_]+)/);
|
|
118
|
-
if (!next)
|
|
119
|
-
|
|
120
|
-
return state.tokenize[state.tokenize.length-1](stream, state)
|
|
121
|
-
}
|
|
118
|
+
if (!next || !stream.match(next[0] == "." ? /^[\w$_]/ : /^\./)) state.tokenize.pop();
|
|
119
|
+
if (!next) return state.tokenize[state.tokenize.length-1](stream, state)
|
|
122
120
|
return next[0] == "." ? null : "variable"
|
|
123
121
|
}
|
|
124
122
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { aq as styleTags, ar as tags, as as LRLanguage, an as indentNodeProp, ao as continuedIndent, ap as foldNodeProp, aB as foldInside, aH as defineCSSCompletionSource, at as LanguageSupport, av as LRParser, au as ExternalTokenizer } from './index-
|
|
1
|
+
import { aq as styleTags, ar as tags, as as LRLanguage, an as indentNodeProp, ao as continuedIndent, ap as foldNodeProp, aB as foldInside, aH as defineCSSCompletionSource, at as LanguageSupport, av as LRParser, au as ExternalTokenizer } from './index-B68UDyAv.js';
|
|
2
2
|
import './worker-utils-BNThsbdN.js';
|
|
3
3
|
import 'hydrated-ws';
|
|
4
4
|
import 'ms';
|
|
@@ -17,6 +17,7 @@ import 'react/jsx-runtime';
|
|
|
17
17
|
import 'react-dom';
|
|
18
18
|
import 'react-syntax-highlighter/dist/esm/styles/prism';
|
|
19
19
|
import 'react-syntax-highlighter';
|
|
20
|
+
import 'rehype-sanitize';
|
|
20
21
|
import 'extend';
|
|
21
22
|
import 'react-icons';
|
|
22
23
|
import '@pandacss/dev';
|