@danielx/civet 0.4.25 → 0.4.26
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/browser.js +3 -2
- package/dist/main.js +3 -2
- package/package.json +1 -1
package/dist/browser.js
CHANGED
|
@@ -11041,6 +11041,7 @@ ${input.slice(result.pos)}
|
|
|
11041
11041
|
var TypeUnaryOp$0 = $EXPECT($L153, fail, 'TypeUnaryOp "keyof"');
|
|
11042
11042
|
var TypeUnaryOp$1 = $EXPECT($L135, fail, 'TypeUnaryOp "typeof"');
|
|
11043
11043
|
var TypeUnaryOp$2 = $EXPECT($L154, fail, 'TypeUnaryOp "infer"');
|
|
11044
|
+
var TypeUnaryOp$3 = $EXPECT($L151, fail, 'TypeUnaryOp "readonly"');
|
|
11044
11045
|
function TypeUnaryOp(state) {
|
|
11045
11046
|
if (state.events) {
|
|
11046
11047
|
const result = state.events.enter?.("TypeUnaryOp", state);
|
|
@@ -11048,12 +11049,12 @@ ${input.slice(result.pos)}
|
|
|
11048
11049
|
return result.cache;
|
|
11049
11050
|
}
|
|
11050
11051
|
if (state.tokenize) {
|
|
11051
|
-
const result = $TOKEN("TypeUnaryOp", state, TypeUnaryOp$0(state) || TypeUnaryOp$1(state) || TypeUnaryOp$2(state));
|
|
11052
|
+
const result = $TOKEN("TypeUnaryOp", state, TypeUnaryOp$0(state) || TypeUnaryOp$1(state) || TypeUnaryOp$2(state) || TypeUnaryOp$3(state));
|
|
11052
11053
|
if (state.events)
|
|
11053
11054
|
state.events.exit?.("TypeUnaryOp", state, result);
|
|
11054
11055
|
return result;
|
|
11055
11056
|
} else {
|
|
11056
|
-
const result = TypeUnaryOp$0(state) || TypeUnaryOp$1(state) || TypeUnaryOp$2(state);
|
|
11057
|
+
const result = TypeUnaryOp$0(state) || TypeUnaryOp$1(state) || TypeUnaryOp$2(state) || TypeUnaryOp$3(state);
|
|
11057
11058
|
if (state.events)
|
|
11058
11059
|
state.events.exit?.("TypeUnaryOp", state, result);
|
|
11059
11060
|
return result;
|
package/dist/main.js
CHANGED
|
@@ -11040,6 +11040,7 @@ ${input.slice(result.pos)}
|
|
|
11040
11040
|
var TypeUnaryOp$0 = $EXPECT($L153, fail, 'TypeUnaryOp "keyof"');
|
|
11041
11041
|
var TypeUnaryOp$1 = $EXPECT($L135, fail, 'TypeUnaryOp "typeof"');
|
|
11042
11042
|
var TypeUnaryOp$2 = $EXPECT($L154, fail, 'TypeUnaryOp "infer"');
|
|
11043
|
+
var TypeUnaryOp$3 = $EXPECT($L151, fail, 'TypeUnaryOp "readonly"');
|
|
11043
11044
|
function TypeUnaryOp(state) {
|
|
11044
11045
|
if (state.events) {
|
|
11045
11046
|
const result = state.events.enter?.("TypeUnaryOp", state);
|
|
@@ -11047,12 +11048,12 @@ ${input.slice(result.pos)}
|
|
|
11047
11048
|
return result.cache;
|
|
11048
11049
|
}
|
|
11049
11050
|
if (state.tokenize) {
|
|
11050
|
-
const result = $TOKEN("TypeUnaryOp", state, TypeUnaryOp$0(state) || TypeUnaryOp$1(state) || TypeUnaryOp$2(state));
|
|
11051
|
+
const result = $TOKEN("TypeUnaryOp", state, TypeUnaryOp$0(state) || TypeUnaryOp$1(state) || TypeUnaryOp$2(state) || TypeUnaryOp$3(state));
|
|
11051
11052
|
if (state.events)
|
|
11052
11053
|
state.events.exit?.("TypeUnaryOp", state, result);
|
|
11053
11054
|
return result;
|
|
11054
11055
|
} else {
|
|
11055
|
-
const result = TypeUnaryOp$0(state) || TypeUnaryOp$1(state) || TypeUnaryOp$2(state);
|
|
11056
|
+
const result = TypeUnaryOp$0(state) || TypeUnaryOp$1(state) || TypeUnaryOp$2(state) || TypeUnaryOp$3(state);
|
|
11056
11057
|
if (state.events)
|
|
11057
11058
|
state.events.exit?.("TypeUnaryOp", state, result);
|
|
11058
11059
|
return result;
|