phantom-pr 0.2.2 → 0.2.4
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/cli.js +7 -0
- package/dist/cli.js.map +1 -1
- package/node_modules/ignore/LICENSE-MIT +21 -0
- package/node_modules/ignore/README.md +452 -0
- package/node_modules/ignore/index.d.ts +81 -0
- package/node_modules/ignore/index.js +784 -0
- package/node_modules/ignore/legacy.js +681 -0
- package/node_modules/ignore/package.json +87 -0
- package/node_modules/yaml/LICENSE +13 -0
- package/node_modules/yaml/README.md +172 -0
- package/node_modules/yaml/bin.mjs +11 -0
- package/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/node_modules/yaml/browser/dist/compose/compose-node.js +102 -0
- package/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
- package/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
- package/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
- package/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
- package/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/node_modules/yaml/browser/dist/errors.js +57 -0
- package/node_modules/yaml/browser/dist/index.js +17 -0
- package/node_modules/yaml/browser/dist/log.js +11 -0
- package/node_modules/yaml/browser/dist/nodes/Alias.js +114 -0
- package/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
- package/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
- package/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/node_modules/yaml/browser/dist/parse/parser.js +967 -0
- package/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/node_modules/yaml/browser/dist/stringify/stringify.js +128 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +143 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
- package/node_modules/yaml/browser/dist/util.js +11 -0
- package/node_modules/yaml/browser/dist/visit.js +233 -0
- package/node_modules/yaml/browser/index.js +5 -0
- package/node_modules/yaml/browser/package.json +3 -0
- package/node_modules/yaml/dist/cli.d.ts +8 -0
- package/node_modules/yaml/dist/cli.mjs +201 -0
- package/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/node_modules/yaml/dist/compose/compose-node.js +105 -0
- package/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/node_modules/yaml/dist/compose/composer.d.ts +63 -0
- package/node_modules/yaml/dist/compose/composer.js +222 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
- package/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/node_modules/yaml/dist/compose/resolve-props.js +148 -0
- package/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
- package/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/node_modules/yaml/dist/doc/Document.js +337 -0
- package/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/node_modules/yaml/dist/doc/anchors.js +76 -0
- package/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/node_modules/yaml/dist/doc/createNode.js +90 -0
- package/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/node_modules/yaml/dist/doc/directives.js +178 -0
- package/node_modules/yaml/dist/errors.d.ts +21 -0
- package/node_modules/yaml/dist/errors.js +62 -0
- package/node_modules/yaml/dist/index.d.ts +25 -0
- package/node_modules/yaml/dist/index.js +50 -0
- package/node_modules/yaml/dist/log.d.ts +3 -0
- package/node_modules/yaml/dist/log.js +19 -0
- package/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
- package/node_modules/yaml/dist/nodes/Alias.js +116 -0
- package/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
- package/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/node_modules/yaml/dist/nodes/Scalar.d.ts +43 -0
- package/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
- package/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
- package/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/node_modules/yaml/dist/options.d.ts +344 -0
- package/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/node_modules/yaml/dist/parse/cst.d.ts +109 -0
- package/node_modules/yaml/dist/parse/cst.js +112 -0
- package/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/node_modules/yaml/dist/parse/lexer.js +719 -0
- package/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/node_modules/yaml/dist/parse/parser.js +972 -0
- package/node_modules/yaml/dist/public-api.d.ts +44 -0
- package/node_modules/yaml/dist/public-api.js +107 -0
- package/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/node_modules/yaml/dist/schema/tags.js +99 -0
- package/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/node_modules/yaml/dist/stringify/stringify.js +131 -0
- package/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/node_modules/yaml/dist/stringify/stringifyCollection.js +145 -0
- package/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
- package/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
- package/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/node_modules/yaml/dist/test-events.js +134 -0
- package/node_modules/yaml/dist/util.d.ts +16 -0
- package/node_modules/yaml/dist/util.js +28 -0
- package/node_modules/yaml/dist/visit.d.ts +102 -0
- package/node_modules/yaml/dist/visit.js +236 -0
- package/node_modules/yaml/package.json +97 -0
- package/node_modules/yaml/util.js +2 -0
- package/package.json +5 -1
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Applies the JSON.parse reviver algorithm as defined in the ECMA-262 spec,
|
|
5
|
+
* in section 24.5.1.1 "Runtime Semantics: InternalizeJSONProperty" of the
|
|
6
|
+
* 2021 edition: https://tc39.es/ecma262/#sec-json.parse
|
|
7
|
+
*
|
|
8
|
+
* Includes extensions for handling Map and Set objects.
|
|
9
|
+
*/
|
|
10
|
+
function applyReviver(reviver, obj, key, val) {
|
|
11
|
+
if (val && typeof val === 'object') {
|
|
12
|
+
if (Array.isArray(val)) {
|
|
13
|
+
for (let i = 0, len = val.length; i < len; ++i) {
|
|
14
|
+
const v0 = val[i];
|
|
15
|
+
const v1 = applyReviver(reviver, val, String(i), v0);
|
|
16
|
+
// eslint-disable-next-line @typescript-eslint/no-array-delete
|
|
17
|
+
if (v1 === undefined)
|
|
18
|
+
delete val[i];
|
|
19
|
+
else if (v1 !== v0)
|
|
20
|
+
val[i] = v1;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
else if (val instanceof Map) {
|
|
24
|
+
for (const k of Array.from(val.keys())) {
|
|
25
|
+
const v0 = val.get(k);
|
|
26
|
+
const v1 = applyReviver(reviver, val, k, v0);
|
|
27
|
+
if (v1 === undefined)
|
|
28
|
+
val.delete(k);
|
|
29
|
+
else if (v1 !== v0)
|
|
30
|
+
val.set(k, v1);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
else if (val instanceof Set) {
|
|
34
|
+
for (const v0 of Array.from(val)) {
|
|
35
|
+
const v1 = applyReviver(reviver, val, v0, v0);
|
|
36
|
+
if (v1 === undefined)
|
|
37
|
+
val.delete(v0);
|
|
38
|
+
else if (v1 !== v0) {
|
|
39
|
+
val.delete(v0);
|
|
40
|
+
val.add(v1);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
for (const [k, v0] of Object.entries(val)) {
|
|
46
|
+
const v1 = applyReviver(reviver, val, k, v0);
|
|
47
|
+
if (v1 === undefined)
|
|
48
|
+
delete val[k];
|
|
49
|
+
else if (v1 !== v0)
|
|
50
|
+
val[k] = v1;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
return reviver.call(obj, key, val);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
exports.applyReviver = applyReviver;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { Node } from '../nodes/Node';
|
|
2
|
+
import type { Schema } from '../schema/Schema';
|
|
3
|
+
import type { CollectionTag, ScalarTag } from '../schema/types';
|
|
4
|
+
import type { Replacer } from './Document';
|
|
5
|
+
export interface CreateNodeContext {
|
|
6
|
+
aliasDuplicateObjects: boolean;
|
|
7
|
+
keepUndefined: boolean;
|
|
8
|
+
onAnchor: (source: unknown) => string;
|
|
9
|
+
onTagObj?: (tagObj: ScalarTag | CollectionTag) => void;
|
|
10
|
+
sourceObjects: Map<unknown, {
|
|
11
|
+
anchor: string | null;
|
|
12
|
+
node: Node | null;
|
|
13
|
+
}>;
|
|
14
|
+
replacer?: Replacer;
|
|
15
|
+
schema: Schema;
|
|
16
|
+
}
|
|
17
|
+
export declare function createNode(value: unknown, tagName: string | undefined, ctx: CreateNodeContext): Node;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var Alias = require('../nodes/Alias.js');
|
|
4
|
+
var identity = require('../nodes/identity.js');
|
|
5
|
+
var Scalar = require('../nodes/Scalar.js');
|
|
6
|
+
|
|
7
|
+
const defaultTagPrefix = 'tag:yaml.org,2002:';
|
|
8
|
+
function findTagObject(value, tagName, tags) {
|
|
9
|
+
if (tagName) {
|
|
10
|
+
const match = tags.filter(t => t.tag === tagName);
|
|
11
|
+
const tagObj = match.find(t => !t.format) ?? match[0];
|
|
12
|
+
if (!tagObj)
|
|
13
|
+
throw new Error(`Tag ${tagName} not found`);
|
|
14
|
+
return tagObj;
|
|
15
|
+
}
|
|
16
|
+
return tags.find(t => t.identify?.(value) && !t.format);
|
|
17
|
+
}
|
|
18
|
+
function createNode(value, tagName, ctx) {
|
|
19
|
+
if (identity.isDocument(value))
|
|
20
|
+
value = value.contents;
|
|
21
|
+
if (identity.isNode(value))
|
|
22
|
+
return value;
|
|
23
|
+
if (identity.isPair(value)) {
|
|
24
|
+
const map = ctx.schema[identity.MAP].createNode?.(ctx.schema, null, ctx);
|
|
25
|
+
map.items.push(value);
|
|
26
|
+
return map;
|
|
27
|
+
}
|
|
28
|
+
if (value instanceof String ||
|
|
29
|
+
value instanceof Number ||
|
|
30
|
+
value instanceof Boolean ||
|
|
31
|
+
(typeof BigInt !== 'undefined' && value instanceof BigInt) // not supported everywhere
|
|
32
|
+
) {
|
|
33
|
+
// https://tc39.es/ecma262/#sec-serializejsonproperty
|
|
34
|
+
value = value.valueOf();
|
|
35
|
+
}
|
|
36
|
+
const { aliasDuplicateObjects, onAnchor, onTagObj, schema, sourceObjects } = ctx;
|
|
37
|
+
// Detect duplicate references to the same object & use Alias nodes for all
|
|
38
|
+
// after first. The `ref` wrapper allows for circular references to resolve.
|
|
39
|
+
let ref = undefined;
|
|
40
|
+
if (aliasDuplicateObjects && value && typeof value === 'object') {
|
|
41
|
+
ref = sourceObjects.get(value);
|
|
42
|
+
if (ref) {
|
|
43
|
+
ref.anchor ?? (ref.anchor = onAnchor(value));
|
|
44
|
+
return new Alias.Alias(ref.anchor);
|
|
45
|
+
}
|
|
46
|
+
else {
|
|
47
|
+
ref = { anchor: null, node: null };
|
|
48
|
+
sourceObjects.set(value, ref);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
if (tagName?.startsWith('!!'))
|
|
52
|
+
tagName = defaultTagPrefix + tagName.slice(2);
|
|
53
|
+
let tagObj = findTagObject(value, tagName, schema.tags);
|
|
54
|
+
if (!tagObj) {
|
|
55
|
+
if (value && typeof value.toJSON === 'function') {
|
|
56
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
|
|
57
|
+
value = value.toJSON();
|
|
58
|
+
}
|
|
59
|
+
if (!value || typeof value !== 'object') {
|
|
60
|
+
const node = new Scalar.Scalar(value);
|
|
61
|
+
if (ref)
|
|
62
|
+
ref.node = node;
|
|
63
|
+
return node;
|
|
64
|
+
}
|
|
65
|
+
tagObj =
|
|
66
|
+
value instanceof Map
|
|
67
|
+
? schema[identity.MAP]
|
|
68
|
+
: Symbol.iterator in Object(value)
|
|
69
|
+
? schema[identity.SEQ]
|
|
70
|
+
: schema[identity.MAP];
|
|
71
|
+
}
|
|
72
|
+
if (onTagObj) {
|
|
73
|
+
onTagObj(tagObj);
|
|
74
|
+
delete ctx.onTagObj;
|
|
75
|
+
}
|
|
76
|
+
const node = tagObj?.createNode
|
|
77
|
+
? tagObj.createNode(ctx.schema, value, ctx)
|
|
78
|
+
: typeof tagObj?.nodeClass?.from === 'function'
|
|
79
|
+
? tagObj.nodeClass.from(ctx.schema, value, ctx)
|
|
80
|
+
: new Scalar.Scalar(value);
|
|
81
|
+
if (tagName)
|
|
82
|
+
node.tag = tagName;
|
|
83
|
+
else if (!tagObj.default)
|
|
84
|
+
node.tag = tagObj.tag;
|
|
85
|
+
if (ref)
|
|
86
|
+
ref.node = node;
|
|
87
|
+
return node;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
exports.createNode = createNode;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { Document } from './Document';
|
|
2
|
+
export declare class Directives {
|
|
3
|
+
static defaultYaml: Directives['yaml'];
|
|
4
|
+
static defaultTags: Directives['tags'];
|
|
5
|
+
yaml: {
|
|
6
|
+
version: '1.1' | '1.2' | 'next';
|
|
7
|
+
explicit?: boolean;
|
|
8
|
+
};
|
|
9
|
+
tags: Record<string, string>;
|
|
10
|
+
/**
|
|
11
|
+
* The directives-end/doc-start marker `---`. If `null`, a marker may still be
|
|
12
|
+
* included in the document's stringified representation.
|
|
13
|
+
*/
|
|
14
|
+
docStart: true | null;
|
|
15
|
+
/** The doc-end marker `...`. */
|
|
16
|
+
docEnd: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Used when parsing YAML 1.1, where:
|
|
19
|
+
* > If the document specifies no directives, it is parsed using the same
|
|
20
|
+
* > settings as the previous document. If the document does specify any
|
|
21
|
+
* > directives, all directives of previous documents, if any, are ignored.
|
|
22
|
+
*/
|
|
23
|
+
private atNextDocument?;
|
|
24
|
+
constructor(yaml?: Directives['yaml'], tags?: Directives['tags']);
|
|
25
|
+
clone(): Directives;
|
|
26
|
+
/**
|
|
27
|
+
* During parsing, get a Directives instance for the current document and
|
|
28
|
+
* update the stream state according to the current version's spec.
|
|
29
|
+
*/
|
|
30
|
+
atDocument(): Directives;
|
|
31
|
+
/**
|
|
32
|
+
* @param onError - May be called even if the action was successful
|
|
33
|
+
* @returns `true` on success
|
|
34
|
+
*/
|
|
35
|
+
add(line: string, onError: (offset: number, message: string, warning?: boolean) => void): boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Resolves a tag, matching handles to those defined in %TAG directives.
|
|
38
|
+
*
|
|
39
|
+
* @returns Resolved tag, which may also be the non-specific tag `'!'` or a
|
|
40
|
+
* `'!local'` tag, or `null` if unresolvable.
|
|
41
|
+
*/
|
|
42
|
+
tagName(source: string, onError: (message: string) => void): string | null;
|
|
43
|
+
/**
|
|
44
|
+
* Given a fully resolved tag, returns its printable string form,
|
|
45
|
+
* taking into account current tag prefixes and defaults.
|
|
46
|
+
*/
|
|
47
|
+
tagString(tag: string): string;
|
|
48
|
+
toString(doc?: Document): string;
|
|
49
|
+
}
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var identity = require('../nodes/identity.js');
|
|
4
|
+
var visit = require('../visit.js');
|
|
5
|
+
|
|
6
|
+
const escapeChars = {
|
|
7
|
+
'!': '%21',
|
|
8
|
+
',': '%2C',
|
|
9
|
+
'[': '%5B',
|
|
10
|
+
']': '%5D',
|
|
11
|
+
'{': '%7B',
|
|
12
|
+
'}': '%7D'
|
|
13
|
+
};
|
|
14
|
+
const escapeTagName = (tn) => tn.replace(/[!,[\]{}]/g, ch => escapeChars[ch]);
|
|
15
|
+
class Directives {
|
|
16
|
+
constructor(yaml, tags) {
|
|
17
|
+
/**
|
|
18
|
+
* The directives-end/doc-start marker `---`. If `null`, a marker may still be
|
|
19
|
+
* included in the document's stringified representation.
|
|
20
|
+
*/
|
|
21
|
+
this.docStart = null;
|
|
22
|
+
/** The doc-end marker `...`. */
|
|
23
|
+
this.docEnd = false;
|
|
24
|
+
this.yaml = Object.assign({}, Directives.defaultYaml, yaml);
|
|
25
|
+
this.tags = Object.assign({}, Directives.defaultTags, tags);
|
|
26
|
+
}
|
|
27
|
+
clone() {
|
|
28
|
+
const copy = new Directives(this.yaml, this.tags);
|
|
29
|
+
copy.docStart = this.docStart;
|
|
30
|
+
return copy;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* During parsing, get a Directives instance for the current document and
|
|
34
|
+
* update the stream state according to the current version's spec.
|
|
35
|
+
*/
|
|
36
|
+
atDocument() {
|
|
37
|
+
const res = new Directives(this.yaml, this.tags);
|
|
38
|
+
switch (this.yaml.version) {
|
|
39
|
+
case '1.1':
|
|
40
|
+
this.atNextDocument = true;
|
|
41
|
+
break;
|
|
42
|
+
case '1.2':
|
|
43
|
+
this.atNextDocument = false;
|
|
44
|
+
this.yaml = {
|
|
45
|
+
explicit: Directives.defaultYaml.explicit,
|
|
46
|
+
version: '1.2'
|
|
47
|
+
};
|
|
48
|
+
this.tags = Object.assign({}, Directives.defaultTags);
|
|
49
|
+
break;
|
|
50
|
+
}
|
|
51
|
+
return res;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* @param onError - May be called even if the action was successful
|
|
55
|
+
* @returns `true` on success
|
|
56
|
+
*/
|
|
57
|
+
add(line, onError) {
|
|
58
|
+
if (this.atNextDocument) {
|
|
59
|
+
this.yaml = { explicit: Directives.defaultYaml.explicit, version: '1.1' };
|
|
60
|
+
this.tags = Object.assign({}, Directives.defaultTags);
|
|
61
|
+
this.atNextDocument = false;
|
|
62
|
+
}
|
|
63
|
+
const parts = line.trim().split(/[ \t]+/);
|
|
64
|
+
const name = parts.shift();
|
|
65
|
+
switch (name) {
|
|
66
|
+
case '%TAG': {
|
|
67
|
+
if (parts.length !== 2) {
|
|
68
|
+
onError(0, '%TAG directive should contain exactly two parts');
|
|
69
|
+
if (parts.length < 2)
|
|
70
|
+
return false;
|
|
71
|
+
}
|
|
72
|
+
const [handle, prefix] = parts;
|
|
73
|
+
this.tags[handle] = prefix;
|
|
74
|
+
return true;
|
|
75
|
+
}
|
|
76
|
+
case '%YAML': {
|
|
77
|
+
this.yaml.explicit = true;
|
|
78
|
+
if (parts.length !== 1) {
|
|
79
|
+
onError(0, '%YAML directive should contain exactly one part');
|
|
80
|
+
return false;
|
|
81
|
+
}
|
|
82
|
+
const [version] = parts;
|
|
83
|
+
if (version === '1.1' || version === '1.2') {
|
|
84
|
+
this.yaml.version = version;
|
|
85
|
+
return true;
|
|
86
|
+
}
|
|
87
|
+
else {
|
|
88
|
+
const isValid = /^\d+\.\d+$/.test(version);
|
|
89
|
+
onError(6, `Unsupported YAML version ${version}`, isValid);
|
|
90
|
+
return false;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
default:
|
|
94
|
+
onError(0, `Unknown directive ${name}`, true);
|
|
95
|
+
return false;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Resolves a tag, matching handles to those defined in %TAG directives.
|
|
100
|
+
*
|
|
101
|
+
* @returns Resolved tag, which may also be the non-specific tag `'!'` or a
|
|
102
|
+
* `'!local'` tag, or `null` if unresolvable.
|
|
103
|
+
*/
|
|
104
|
+
tagName(source, onError) {
|
|
105
|
+
if (source === '!')
|
|
106
|
+
return '!'; // non-specific tag
|
|
107
|
+
if (source[0] !== '!') {
|
|
108
|
+
onError(`Not a valid tag: ${source}`);
|
|
109
|
+
return null;
|
|
110
|
+
}
|
|
111
|
+
if (source[1] === '<') {
|
|
112
|
+
const verbatim = source.slice(2, -1);
|
|
113
|
+
if (verbatim === '!' || verbatim === '!!') {
|
|
114
|
+
onError(`Verbatim tags aren't resolved, so ${source} is invalid.`);
|
|
115
|
+
return null;
|
|
116
|
+
}
|
|
117
|
+
if (source[source.length - 1] !== '>')
|
|
118
|
+
onError('Verbatim tags must end with a >');
|
|
119
|
+
return verbatim;
|
|
120
|
+
}
|
|
121
|
+
const [, handle, suffix] = source.match(/^(.*!)([^!]*)$/s);
|
|
122
|
+
if (!suffix)
|
|
123
|
+
onError(`The ${source} tag has no suffix`);
|
|
124
|
+
const prefix = this.tags[handle];
|
|
125
|
+
if (prefix) {
|
|
126
|
+
try {
|
|
127
|
+
return prefix + decodeURIComponent(suffix);
|
|
128
|
+
}
|
|
129
|
+
catch (error) {
|
|
130
|
+
onError(String(error));
|
|
131
|
+
return null;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
if (handle === '!')
|
|
135
|
+
return source; // local tag
|
|
136
|
+
onError(`Could not resolve tag: ${source}`);
|
|
137
|
+
return null;
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Given a fully resolved tag, returns its printable string form,
|
|
141
|
+
* taking into account current tag prefixes and defaults.
|
|
142
|
+
*/
|
|
143
|
+
tagString(tag) {
|
|
144
|
+
for (const [handle, prefix] of Object.entries(this.tags)) {
|
|
145
|
+
if (tag.startsWith(prefix))
|
|
146
|
+
return handle + escapeTagName(tag.substring(prefix.length));
|
|
147
|
+
}
|
|
148
|
+
return tag[0] === '!' ? tag : `!<${tag}>`;
|
|
149
|
+
}
|
|
150
|
+
toString(doc) {
|
|
151
|
+
const lines = this.yaml.explicit
|
|
152
|
+
? [`%YAML ${this.yaml.version || '1.2'}`]
|
|
153
|
+
: [];
|
|
154
|
+
const tagEntries = Object.entries(this.tags);
|
|
155
|
+
let tagNames;
|
|
156
|
+
if (doc && tagEntries.length > 0 && identity.isNode(doc.contents)) {
|
|
157
|
+
const tags = {};
|
|
158
|
+
visit.visit(doc.contents, (_key, node) => {
|
|
159
|
+
if (identity.isNode(node) && node.tag)
|
|
160
|
+
tags[node.tag] = true;
|
|
161
|
+
});
|
|
162
|
+
tagNames = Object.keys(tags);
|
|
163
|
+
}
|
|
164
|
+
else
|
|
165
|
+
tagNames = [];
|
|
166
|
+
for (const [handle, prefix] of tagEntries) {
|
|
167
|
+
if (handle === '!!' && prefix === 'tag:yaml.org,2002:')
|
|
168
|
+
continue;
|
|
169
|
+
if (!doc || tagNames.some(tn => tn.startsWith(prefix)))
|
|
170
|
+
lines.push(`%TAG ${handle} ${prefix}`);
|
|
171
|
+
}
|
|
172
|
+
return lines.join('\n');
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
Directives.defaultYaml = { explicit: false, version: '1.2' };
|
|
176
|
+
Directives.defaultTags = { '!!': 'tag:yaml.org,2002:' };
|
|
177
|
+
|
|
178
|
+
exports.Directives = Directives;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { LineCounter } from './parse/line-counter';
|
|
2
|
+
export type ErrorCode = 'ALIAS_PROPS' | 'BAD_ALIAS' | 'BAD_DIRECTIVE' | 'BAD_DQ_ESCAPE' | 'BAD_INDENT' | 'BAD_PROP_ORDER' | 'BAD_SCALAR_START' | 'BLOCK_AS_IMPLICIT_KEY' | 'BLOCK_IN_FLOW' | 'DUPLICATE_KEY' | 'IMPOSSIBLE' | 'KEY_OVER_1024_CHARS' | 'MISSING_CHAR' | 'MULTILINE_IMPLICIT_KEY' | 'MULTIPLE_ANCHORS' | 'MULTIPLE_DOCS' | 'MULTIPLE_TAGS' | 'NON_STRING_KEY' | 'TAB_AS_INDENT' | 'TAG_RESOLVE_FAILED' | 'UNEXPECTED_TOKEN' | 'BAD_COLLECTION_TYPE';
|
|
3
|
+
export type LinePos = {
|
|
4
|
+
line: number;
|
|
5
|
+
col: number;
|
|
6
|
+
};
|
|
7
|
+
export declare class YAMLError extends Error {
|
|
8
|
+
name: 'YAMLParseError' | 'YAMLWarning';
|
|
9
|
+
code: ErrorCode;
|
|
10
|
+
message: string;
|
|
11
|
+
pos: [number, number];
|
|
12
|
+
linePos?: [LinePos] | [LinePos, LinePos];
|
|
13
|
+
constructor(name: YAMLError['name'], pos: [number, number], code: ErrorCode, message: string);
|
|
14
|
+
}
|
|
15
|
+
export declare class YAMLParseError extends YAMLError {
|
|
16
|
+
constructor(pos: [number, number], code: ErrorCode, message: string);
|
|
17
|
+
}
|
|
18
|
+
export declare class YAMLWarning extends YAMLError {
|
|
19
|
+
constructor(pos: [number, number], code: ErrorCode, message: string);
|
|
20
|
+
}
|
|
21
|
+
export declare const prettifyError: (src: string, lc: LineCounter) => (error: YAMLError) => void;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
class YAMLError extends Error {
|
|
4
|
+
constructor(name, pos, code, message) {
|
|
5
|
+
super();
|
|
6
|
+
this.name = name;
|
|
7
|
+
this.code = code;
|
|
8
|
+
this.message = message;
|
|
9
|
+
this.pos = pos;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
class YAMLParseError extends YAMLError {
|
|
13
|
+
constructor(pos, code, message) {
|
|
14
|
+
super('YAMLParseError', pos, code, message);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
class YAMLWarning extends YAMLError {
|
|
18
|
+
constructor(pos, code, message) {
|
|
19
|
+
super('YAMLWarning', pos, code, message);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
const prettifyError = (src, lc) => (error) => {
|
|
23
|
+
if (error.pos[0] === -1)
|
|
24
|
+
return;
|
|
25
|
+
error.linePos = error.pos.map(pos => lc.linePos(pos));
|
|
26
|
+
const { line, col } = error.linePos[0];
|
|
27
|
+
error.message += ` at line ${line}, column ${col}`;
|
|
28
|
+
let ci = col - 1;
|
|
29
|
+
let lineStr = src
|
|
30
|
+
.substring(lc.lineStarts[line - 1], lc.lineStarts[line])
|
|
31
|
+
.replace(/[\n\r]+$/, '');
|
|
32
|
+
// Trim to max 80 chars, keeping col position near the middle
|
|
33
|
+
if (ci >= 60 && lineStr.length > 80) {
|
|
34
|
+
const trimStart = Math.min(ci - 39, lineStr.length - 79);
|
|
35
|
+
lineStr = '…' + lineStr.substring(trimStart);
|
|
36
|
+
ci -= trimStart - 1;
|
|
37
|
+
}
|
|
38
|
+
if (lineStr.length > 80)
|
|
39
|
+
lineStr = lineStr.substring(0, 79) + '…';
|
|
40
|
+
// Include previous line in context if pointing at line start
|
|
41
|
+
if (line > 1 && /^ *$/.test(lineStr.substring(0, ci))) {
|
|
42
|
+
// Regexp won't match if start is trimmed
|
|
43
|
+
let prev = src.substring(lc.lineStarts[line - 2], lc.lineStarts[line - 1]);
|
|
44
|
+
if (prev.length > 80)
|
|
45
|
+
prev = prev.substring(0, 79) + '…\n';
|
|
46
|
+
lineStr = prev + lineStr;
|
|
47
|
+
}
|
|
48
|
+
if (/[^ ]/.test(lineStr)) {
|
|
49
|
+
let count = 1;
|
|
50
|
+
const end = error.linePos[1];
|
|
51
|
+
if (end?.line === line && end.col > col) {
|
|
52
|
+
count = Math.max(1, Math.min(end.col - col, 80 - ci));
|
|
53
|
+
}
|
|
54
|
+
const pointer = ' '.repeat(ci) + '^'.repeat(count);
|
|
55
|
+
error.message += `:\n\n${lineStr}\n${pointer}\n`;
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
exports.YAMLError = YAMLError;
|
|
60
|
+
exports.YAMLParseError = YAMLParseError;
|
|
61
|
+
exports.YAMLWarning = YAMLWarning;
|
|
62
|
+
exports.prettifyError = prettifyError;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export { Composer } from './compose/composer';
|
|
2
|
+
export { Document } from './doc/Document';
|
|
3
|
+
export { Schema } from './schema/Schema';
|
|
4
|
+
export type { ErrorCode } from './errors';
|
|
5
|
+
export { YAMLError, YAMLParseError, YAMLWarning } from './errors';
|
|
6
|
+
export { Alias } from './nodes/Alias';
|
|
7
|
+
export { isAlias, isCollection, isDocument, isMap, isNode, isPair, isScalar, isSeq } from './nodes/identity';
|
|
8
|
+
export type { Node, ParsedNode, Range } from './nodes/Node';
|
|
9
|
+
export { Pair } from './nodes/Pair';
|
|
10
|
+
export { Scalar } from './nodes/Scalar';
|
|
11
|
+
export { YAMLMap } from './nodes/YAMLMap';
|
|
12
|
+
export { YAMLSeq } from './nodes/YAMLSeq';
|
|
13
|
+
export type { CreateNodeOptions, DocumentOptions, ParseOptions, SchemaOptions, ToJSOptions, ToStringOptions } from './options';
|
|
14
|
+
export * as CST from './parse/cst';
|
|
15
|
+
export { Lexer } from './parse/lexer';
|
|
16
|
+
export { LineCounter } from './parse/line-counter';
|
|
17
|
+
export { Parser } from './parse/parser';
|
|
18
|
+
export type { EmptyStream } from './public-api';
|
|
19
|
+
export { parse, parseAllDocuments, parseDocument, stringify } from './public-api';
|
|
20
|
+
export type { TagId, Tags } from './schema/tags';
|
|
21
|
+
export type { CollectionTag, ScalarTag } from './schema/types';
|
|
22
|
+
export type { YAMLOMap } from './schema/yaml-1.1/omap';
|
|
23
|
+
export type { YAMLSet } from './schema/yaml-1.1/set';
|
|
24
|
+
export type { asyncVisitor, asyncVisitorFn, visitor, visitorFn } from './visit';
|
|
25
|
+
export { visit, visitAsync } from './visit';
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var composer = require('./compose/composer.js');
|
|
4
|
+
var Document = require('./doc/Document.js');
|
|
5
|
+
var Schema = require('./schema/Schema.js');
|
|
6
|
+
var errors = require('./errors.js');
|
|
7
|
+
var Alias = require('./nodes/Alias.js');
|
|
8
|
+
var identity = require('./nodes/identity.js');
|
|
9
|
+
var Pair = require('./nodes/Pair.js');
|
|
10
|
+
var Scalar = require('./nodes/Scalar.js');
|
|
11
|
+
var YAMLMap = require('./nodes/YAMLMap.js');
|
|
12
|
+
var YAMLSeq = require('./nodes/YAMLSeq.js');
|
|
13
|
+
var cst = require('./parse/cst.js');
|
|
14
|
+
var lexer = require('./parse/lexer.js');
|
|
15
|
+
var lineCounter = require('./parse/line-counter.js');
|
|
16
|
+
var parser = require('./parse/parser.js');
|
|
17
|
+
var publicApi = require('./public-api.js');
|
|
18
|
+
var visit = require('./visit.js');
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
exports.Composer = composer.Composer;
|
|
23
|
+
exports.Document = Document.Document;
|
|
24
|
+
exports.Schema = Schema.Schema;
|
|
25
|
+
exports.YAMLError = errors.YAMLError;
|
|
26
|
+
exports.YAMLParseError = errors.YAMLParseError;
|
|
27
|
+
exports.YAMLWarning = errors.YAMLWarning;
|
|
28
|
+
exports.Alias = Alias.Alias;
|
|
29
|
+
exports.isAlias = identity.isAlias;
|
|
30
|
+
exports.isCollection = identity.isCollection;
|
|
31
|
+
exports.isDocument = identity.isDocument;
|
|
32
|
+
exports.isMap = identity.isMap;
|
|
33
|
+
exports.isNode = identity.isNode;
|
|
34
|
+
exports.isPair = identity.isPair;
|
|
35
|
+
exports.isScalar = identity.isScalar;
|
|
36
|
+
exports.isSeq = identity.isSeq;
|
|
37
|
+
exports.Pair = Pair.Pair;
|
|
38
|
+
exports.Scalar = Scalar.Scalar;
|
|
39
|
+
exports.YAMLMap = YAMLMap.YAMLMap;
|
|
40
|
+
exports.YAMLSeq = YAMLSeq.YAMLSeq;
|
|
41
|
+
exports.CST = cst;
|
|
42
|
+
exports.Lexer = lexer.Lexer;
|
|
43
|
+
exports.LineCounter = lineCounter.LineCounter;
|
|
44
|
+
exports.Parser = parser.Parser;
|
|
45
|
+
exports.parse = publicApi.parse;
|
|
46
|
+
exports.parseAllDocuments = publicApi.parseAllDocuments;
|
|
47
|
+
exports.parseDocument = publicApi.parseDocument;
|
|
48
|
+
exports.stringify = publicApi.stringify;
|
|
49
|
+
exports.visit = visit.visit;
|
|
50
|
+
exports.visitAsync = visit.visitAsync;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var node_process = require('process');
|
|
4
|
+
|
|
5
|
+
function debug(logLevel, ...messages) {
|
|
6
|
+
if (logLevel === 'debug')
|
|
7
|
+
console.log(...messages);
|
|
8
|
+
}
|
|
9
|
+
function warn(logLevel, warning) {
|
|
10
|
+
if (logLevel === 'debug' || logLevel === 'warn') {
|
|
11
|
+
if (typeof node_process.emitWarning === 'function')
|
|
12
|
+
node_process.emitWarning(warning);
|
|
13
|
+
else
|
|
14
|
+
console.warn(warning);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
exports.debug = debug;
|
|
19
|
+
exports.warn = warn;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { Document } from '../doc/Document';
|
|
2
|
+
import type { FlowScalar } from '../parse/cst';
|
|
3
|
+
import type { StringifyContext } from '../stringify/stringify';
|
|
4
|
+
import type { Range } from './Node';
|
|
5
|
+
import { NodeBase } from './Node';
|
|
6
|
+
import type { Scalar } from './Scalar';
|
|
7
|
+
import type { ToJSContext } from './toJS';
|
|
8
|
+
import type { YAMLMap } from './YAMLMap';
|
|
9
|
+
import type { YAMLSeq } from './YAMLSeq';
|
|
10
|
+
export declare namespace Alias {
|
|
11
|
+
interface Parsed extends Alias {
|
|
12
|
+
range: Range;
|
|
13
|
+
srcToken?: FlowScalar & {
|
|
14
|
+
type: 'alias';
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
export declare class Alias extends NodeBase {
|
|
19
|
+
source: string;
|
|
20
|
+
anchor?: never;
|
|
21
|
+
constructor(source: string);
|
|
22
|
+
/**
|
|
23
|
+
* Resolve the value of this alias within `doc`, finding the last
|
|
24
|
+
* instance of the `source` anchor before this node.
|
|
25
|
+
*/
|
|
26
|
+
resolve(doc: Document, ctx?: ToJSContext): Scalar | YAMLMap | YAMLSeq | undefined;
|
|
27
|
+
toJSON(_arg?: unknown, ctx?: ToJSContext): unknown;
|
|
28
|
+
toString(ctx?: StringifyContext, _onComment?: () => void, _onChompKeep?: () => void): string;
|
|
29
|
+
}
|