1
Fork 0

Improve naming of "val" field

This commit is contained in:
Guillaume Gomez 2022-01-03 16:43:30 +01:00
parent f5833e759e
commit bbcf1762dd
12 changed files with 58 additions and 58 deletions

View file

@ -11,7 +11,7 @@ const PARSED = [
original: "<\"P\">",
returned: [],
typeFilter: null,
val: "<\"p\">",
userQuery: "<\"p\">",
error: "`\"` cannot be used in generics",
},
{
@ -24,7 +24,7 @@ const PARSED = [
original: "\"P\" \"P\"",
returned: [],
typeFilter: null,
val: "\"p\" \"p\"",
userQuery: "\"p\" \"p\"",
error: "Cannot have more than one literal search element",
},
{
@ -37,7 +37,7 @@ const PARSED = [
original: "P \"P\"",
returned: [],
typeFilter: null,
val: "p \"p\"",
userQuery: "p \"p\"",
error: "Cannot use literal search when there is more than one element",
},
];