UNPKG

jsonpath-faster

Version:

Query JavaScript objects with JSONPath expressions. Compiles and caches JSONpath to JS

422 lines (416 loc) 8.13 kB
/* IMPORTANT * This snapshot file is auto-generated, but designed for humans. * It should be checked into source control and tracked carefully. * Re-generate by setting TAP_SNAPSHOT=1 and running tests. * Make sure to inspect the output below. Do not ignore changes! */ 'use strict' exports[`test/vivifiers.js TAP > $..id 1`] = ` [ { "expression": { "type": "root", "value": "$" }, "pragmas": {} }, { "expression": { "type": "identifier", "value": "id" }, "scope": "descendant", "operation": "member", "pragmas": {} }, { "scope": "internal", "operation": "terminal", "pragmas": {}, "group": 0, "vivify": true } ] ` exports[`test/vivifiers.js TAP > $.foo.bar, $.foo.baz 1`] = ` [ { "expression": { "type": "root", "value": "$" }, "vivify": true, "vv": "{}", "pragmas": { "unordered": false } }, { "expression": { "type": "identifier", "value": "foo" }, "scope": "child", "operation": "member", "vivify": true, "vv": "{}", "pragmas": { "unordered": false } }, { "scope": "internal", "operation": "fork", "vivify": true, "next": [ [ { "expression": { "type": "identifier", "value": "bar" }, "scope": "child", "operation": "member", "vivify": true, "pragmas": {} }, { "scope": "internal", "operation": "terminal", "pragmas": {}, "group": 0, "vivify": true } ], [ { "expression": { "type": "identifier", "value": "baz" }, "scope": "child", "operation": "member", "vivify": true, "pragmas": {} }, { "scope": "internal", "operation": "terminal", "pragmas": {}, "group": 1, "vivify": true } ] ], "pragmas": { "unordered": false } } ] ` exports[`test/vivifiers.js TAP > $.foo.bar, $.foo.baz[0].id, $.foo.baz[2].id 1`] = ` [ { "expression": { "type": "root", "value": "$" }, "vivify": true, "vv": "{}", "pragmas": { "unordered": false } }, { "expression": { "type": "identifier", "value": "foo" }, "scope": "child", "operation": "member", "vivify": true, "vv": "{}", "pragmas": { "unordered": false } }, { "scope": "internal", "operation": "fork", "vivify": true, "next": [ [ { "expression": { "type": "identifier", "value": "bar" }, "scope": "child", "operation": "member", "vivify": true, "pragmas": {} }, { "scope": "internal", "operation": "terminal", "pragmas": {}, "group": 0, "vivify": true } ], [ { "expression": { "type": "identifier", "value": "baz" }, "scope": "child", "operation": "member", "vivify": true, "vv": "[]", "pragmas": { "unordered": false } }, { "scope": "internal", "operation": "fork", "vivify": true, "next": [ [ { "expression": { "type": "numeric_literal", "value": 0 }, "scope": "child", "operation": "subscript", "vivify": true, "vv": "{}", "pragmas": {} }, { "expression": { "type": "identifier", "value": "id" }, "scope": "child", "operation": "member", "vivify": true, "pragmas": {} }, { "scope": "internal", "operation": "terminal", "pragmas": {}, "group": 1, "vivify": true } ], [ { "expression": { "type": "numeric_literal", "value": 2 }, "scope": "child", "operation": "subscript", "vivify": true, "vv": "{}", "pragmas": {} }, { "expression": { "type": "identifier", "value": "id" }, "scope": "child", "operation": "member", "vivify": true, "pragmas": {} }, { "scope": "internal", "operation": "terminal", "pragmas": {}, "group": 2, "vivify": true } ] ], "pragmas": { "unordered": false } } ] ], "pragmas": { "unordered": false } } ] ` exports[`test/vivifiers.js TAP > $.foo[($.idx)] 1`] = ` [ { "expression": { "type": "root", "value": "$" }, "vivify": true, "vv": "{}", "pragmas": {} }, { "expression": { "type": "identifier", "value": "foo" }, "scope": "child", "operation": "member", "vivify": true, "pragmas": {} }, { "expression": { "type": "script_expression", "value": "($.idx)" }, "scope": "child", "operation": "subscript", "vivify": true, "pragmas": {} }, { "scope": "internal", "operation": "terminal", "pragmas": {}, "group": 0, "vivify": true } ] ` exports[`test/vivifiers.js TAP > $.foo[3].bar[1] 1`] = ` [ { "expression": { "type": "root", "value": "$" }, "vivify": true, "vv": "{}", "pragmas": {} }, { "expression": { "type": "identifier", "value": "foo" }, "scope": "child", "operation": "member", "vivify": true, "vv": "[]", "pragmas": {} }, { "expression": { "type": "numeric_literal", "value": 3 }, "scope": "child", "operation": "subscript", "vivify": true, "vv": "{}", "pragmas": {} }, { "expression": { "type": "identifier", "value": "bar" }, "scope": "child", "operation": "member", "vivify": true, "vv": "[]", "pragmas": {} }, { "expression": { "type": "numeric_literal", "value": 1 }, "scope": "child", "operation": "subscript", "vivify": true, "pragmas": {} }, { "scope": "internal", "operation": "terminal", "pragmas": {}, "group": 0, "vivify": true } ] ` exports[`test/vivifiers.js TAP > $.person[(1-1)][("id")].name 1`] = ` [ { "expression": { "type": "root", "value": "$" }, "vivify": true, "vv": "{}", "pragmas": {} }, { "expression": { "type": "identifier", "value": "person" }, "scope": "child", "operation": "member", "vivify": true, "pragmas": {} }, { "expression": { "type": "script_expression", "value": "(1-1)" }, "scope": "child", "operation": "subscript", "vivify": true, "pragmas": {} }, { "expression": { "type": "script_expression", "value": "(\\"id\\")" }, "scope": "child", "operation": "subscript", "vivify": true, "vv": "{}", "pragmas": {} }, { "expression": { "type": "identifier", "value": "name" }, "scope": "child", "operation": "member", "vivify": true, "pragmas": {} }, { "scope": "internal", "operation": "terminal", "pragmas": {}, "group": 0, "vivify": true } ] `