yaml 2.0.0-0 → 2.0.0-11

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.
Files changed (250) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +51 -35
  3. package/browser/dist/compose/compose-collection.js +59 -0
  4. package/browser/dist/compose/compose-doc.js +40 -0
  5. package/browser/dist/compose/compose-node.js +90 -0
  6. package/browser/dist/compose/compose-scalar.js +81 -0
  7. package/browser/dist/compose/composer.js +217 -0
  8. package/browser/dist/compose/resolve-block-map.js +107 -0
  9. package/browser/dist/compose/resolve-block-scalar.js +192 -0
  10. package/browser/dist/compose/resolve-block-seq.js +45 -0
  11. package/browser/dist/compose/resolve-end.js +37 -0
  12. package/browser/dist/compose/resolve-flow-collection.js +200 -0
  13. package/browser/dist/compose/resolve-flow-scalar.js +223 -0
  14. package/browser/dist/compose/resolve-props.js +130 -0
  15. package/browser/dist/compose/util-contains-newline.js +34 -0
  16. package/browser/dist/compose/util-empty-scalar-position.js +27 -0
  17. package/browser/dist/compose/util-flow-indent-check.js +15 -0
  18. package/browser/dist/compose/util-map-includes.js +17 -0
  19. package/browser/dist/doc/Document.js +328 -0
  20. package/browser/dist/doc/anchors.js +72 -0
  21. package/browser/dist/doc/applyReviver.js +54 -0
  22. package/browser/dist/doc/createNode.js +84 -0
  23. package/browser/dist/doc/directives.js +169 -0
  24. package/browser/dist/errors.js +57 -0
  25. package/browser/dist/index.js +17 -1045
  26. package/browser/dist/log.js +14 -0
  27. package/browser/dist/node_modules/tslib/tslib.es6.js +164 -0
  28. package/browser/dist/nodes/Alias.js +94 -0
  29. package/browser/dist/nodes/Collection.js +146 -0
  30. package/browser/dist/nodes/Node.js +48 -0
  31. package/browser/dist/nodes/Pair.js +36 -0
  32. package/browser/dist/nodes/Scalar.js +23 -0
  33. package/browser/dist/nodes/YAMLMap.js +116 -0
  34. package/browser/dist/nodes/YAMLSeq.js +105 -0
  35. package/browser/dist/nodes/addPairToJSMap.js +104 -0
  36. package/browser/dist/nodes/toJS.js +35 -0
  37. package/browser/dist/parse/cst-scalar.js +215 -0
  38. package/browser/dist/parse/cst-stringify.js +61 -0
  39. package/browser/dist/parse/cst-visit.js +97 -0
  40. package/browser/dist/parse/cst.js +98 -0
  41. package/browser/dist/parse/lexer.js +701 -0
  42. package/browser/dist/parse/line-counter.js +39 -0
  43. package/browser/dist/parse/parser.js +916 -0
  44. package/browser/dist/public-api.js +99 -0
  45. package/browser/dist/schema/Schema.js +34 -0
  46. package/browser/dist/schema/common/map.js +42 -0
  47. package/browser/dist/schema/common/null.js +15 -0
  48. package/browser/dist/schema/common/seq.js +33 -0
  49. package/browser/dist/schema/common/string.js +14 -0
  50. package/browser/dist/schema/core/bool.js +19 -0
  51. package/browser/dist/schema/core/float.js +43 -0
  52. package/browser/dist/schema/core/int.js +38 -0
  53. package/browser/dist/schema/core/schema.js +23 -0
  54. package/browser/dist/schema/json/schema.js +62 -0
  55. package/browser/dist/schema/tags.js +83 -0
  56. package/browser/dist/schema/yaml-1.1/binary.js +66 -0
  57. package/browser/dist/schema/yaml-1.1/bool.js +26 -0
  58. package/browser/dist/schema/yaml-1.1/float.js +46 -0
  59. package/browser/dist/schema/yaml-1.1/int.js +71 -0
  60. package/browser/dist/schema/yaml-1.1/omap.js +73 -0
  61. package/browser/dist/schema/yaml-1.1/pairs.js +77 -0
  62. package/browser/dist/schema/yaml-1.1/schema.js +37 -0
  63. package/browser/dist/schema/yaml-1.1/set.js +87 -0
  64. package/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
  65. package/browser/dist/stringify/foldFlowLines.js +135 -0
  66. package/browser/dist/stringify/stringify.js +124 -0
  67. package/browser/dist/stringify/stringifyCollection.js +152 -0
  68. package/browser/dist/stringify/stringifyComment.js +18 -0
  69. package/browser/dist/stringify/stringifyDocument.js +86 -0
  70. package/browser/dist/stringify/stringifyNumber.js +24 -0
  71. package/browser/dist/stringify/stringifyPair.js +122 -0
  72. package/browser/dist/stringify/stringifyString.js +314 -0
  73. package/browser/dist/util.js +9 -2
  74. package/browser/dist/visit.js +234 -0
  75. package/browser/index.js +5 -1
  76. package/browser/package.json +3 -0
  77. package/dist/compose/compose-collection.d.ts +5 -0
  78. package/dist/compose/compose-collection.js +61 -0
  79. package/dist/compose/compose-doc.d.ts +6 -0
  80. package/dist/compose/compose-doc.js +42 -0
  81. package/dist/compose/compose-node.d.ts +26 -0
  82. package/dist/compose/compose-node.js +93 -0
  83. package/dist/compose/compose-scalar.d.ts +5 -0
  84. package/dist/compose/compose-scalar.js +83 -0
  85. package/dist/compose/composer.d.ts +62 -0
  86. package/dist/compose/composer.js +221 -0
  87. package/dist/compose/resolve-block-map.d.ts +6 -0
  88. package/dist/compose/resolve-block-map.js +109 -0
  89. package/dist/compose/resolve-block-scalar.d.ts +10 -0
  90. package/dist/compose/resolve-block-scalar.js +194 -0
  91. package/dist/compose/resolve-block-seq.d.ts +5 -0
  92. package/dist/compose/resolve-block-seq.js +47 -0
  93. package/dist/compose/resolve-end.d.ts +6 -0
  94. package/dist/compose/resolve-end.js +39 -0
  95. package/dist/compose/resolve-flow-collection.d.ts +6 -0
  96. package/dist/compose/resolve-flow-collection.js +202 -0
  97. package/dist/compose/resolve-flow-scalar.d.ts +10 -0
  98. package/dist/compose/resolve-flow-scalar.js +225 -0
  99. package/dist/compose/resolve-props.d.ts +21 -0
  100. package/dist/compose/resolve-props.js +132 -0
  101. package/dist/compose/util-contains-newline.d.ts +2 -0
  102. package/dist/compose/util-contains-newline.js +36 -0
  103. package/dist/compose/util-empty-scalar-position.d.ts +2 -0
  104. package/dist/compose/util-empty-scalar-position.js +29 -0
  105. package/dist/compose/util-flow-indent-check.d.ts +3 -0
  106. package/dist/compose/util-flow-indent-check.js +17 -0
  107. package/dist/compose/util-map-includes.d.ts +4 -0
  108. package/dist/compose/util-map-includes.js +19 -0
  109. package/dist/doc/Document.d.ts +139 -0
  110. package/dist/doc/Document.js +330 -0
  111. package/dist/doc/anchors.d.ts +24 -0
  112. package/dist/doc/anchors.js +77 -0
  113. package/dist/doc/applyReviver.d.ts +9 -0
  114. package/dist/doc/applyReviver.js +56 -0
  115. package/dist/doc/createNode.d.ts +17 -0
  116. package/dist/doc/createNode.js +86 -0
  117. package/dist/doc/directives.d.ts +49 -0
  118. package/dist/doc/directives.js +171 -0
  119. package/dist/errors.d.ts +21 -0
  120. package/dist/errors.js +62 -0
  121. package/dist/index.d.ts +19 -0
  122. package/dist/index.js +48 -81
  123. package/dist/log.d.ts +3 -0
  124. package/dist/log.js +17 -0
  125. package/dist/node_modules/tslib/tslib.es6.js +76 -0
  126. package/dist/nodes/Alias.d.ts +28 -0
  127. package/dist/nodes/Alias.js +96 -0
  128. package/dist/nodes/Collection.d.ts +73 -0
  129. package/dist/nodes/Collection.js +150 -0
  130. package/dist/nodes/Node.d.ts +53 -0
  131. package/dist/nodes/Node.js +66 -0
  132. package/dist/nodes/Pair.d.ts +21 -0
  133. package/dist/nodes/Pair.js +39 -0
  134. package/dist/nodes/Scalar.d.ts +42 -0
  135. package/dist/nodes/Scalar.js +26 -0
  136. package/dist/nodes/YAMLMap.d.ts +41 -0
  137. package/dist/nodes/YAMLMap.js +119 -0
  138. package/dist/nodes/YAMLSeq.d.ts +55 -0
  139. package/dist/nodes/YAMLSeq.js +107 -0
  140. package/dist/nodes/addPairToJSMap.d.ts +3 -0
  141. package/dist/nodes/addPairToJSMap.js +106 -0
  142. package/dist/nodes/toJS.d.ts +30 -0
  143. package/dist/nodes/toJS.js +37 -0
  144. package/dist/options.d.ts +330 -0
  145. package/dist/parse/cst-scalar.d.ts +64 -0
  146. package/dist/parse/cst-scalar.js +219 -0
  147. package/dist/parse/cst-stringify.d.ts +8 -0
  148. package/dist/parse/cst-stringify.js +63 -0
  149. package/dist/parse/cst-visit.d.ts +39 -0
  150. package/dist/parse/cst-visit.js +99 -0
  151. package/dist/parse/cst.d.ts +106 -0
  152. package/dist/parse/cst.js +112 -0
  153. package/dist/parse/lexer.d.ts +87 -0
  154. package/dist/parse/lexer.js +703 -0
  155. package/dist/parse/line-counter.d.ts +22 -0
  156. package/dist/parse/line-counter.js +41 -0
  157. package/dist/parse/parser.d.ts +84 -0
  158. package/dist/parse/parser.js +920 -0
  159. package/dist/public-api.d.ts +43 -0
  160. package/dist/public-api.js +104 -0
  161. package/dist/schema/Schema.d.ts +18 -0
  162. package/dist/schema/Schema.js +36 -0
  163. package/dist/schema/common/map.d.ts +2 -0
  164. package/dist/schema/common/map.js +44 -0
  165. package/dist/schema/common/null.d.ts +4 -0
  166. package/dist/schema/common/null.js +17 -0
  167. package/dist/schema/common/seq.d.ts +2 -0
  168. package/dist/schema/common/seq.js +35 -0
  169. package/dist/schema/common/string.d.ts +2 -0
  170. package/dist/schema/common/string.js +16 -0
  171. package/dist/schema/core/bool.d.ts +4 -0
  172. package/dist/schema/core/bool.js +21 -0
  173. package/dist/schema/core/float.d.ts +4 -0
  174. package/dist/schema/core/float.js +47 -0
  175. package/dist/schema/core/int.d.ts +4 -0
  176. package/dist/schema/core/int.js +42 -0
  177. package/dist/schema/core/schema.d.ts +1 -0
  178. package/dist/schema/core/schema.js +25 -0
  179. package/dist/schema/json/schema.d.ts +2 -0
  180. package/dist/schema/json/schema.js +64 -0
  181. package/dist/schema/tags.d.ts +40 -0
  182. package/dist/schema/tags.js +86 -0
  183. package/dist/schema/types.d.ts +82 -0
  184. package/dist/schema/yaml-1.1/binary.d.ts +2 -0
  185. package/dist/schema/yaml-1.1/binary.js +68 -0
  186. package/dist/schema/yaml-1.1/bool.d.ts +7 -0
  187. package/dist/schema/yaml-1.1/bool.js +29 -0
  188. package/dist/schema/yaml-1.1/float.d.ts +4 -0
  189. package/dist/schema/yaml-1.1/float.js +50 -0
  190. package/dist/schema/yaml-1.1/int.d.ts +5 -0
  191. package/dist/schema/yaml-1.1/int.js +76 -0
  192. package/dist/schema/yaml-1.1/omap.d.ts +21 -0
  193. package/dist/schema/yaml-1.1/omap.js +76 -0
  194. package/dist/schema/yaml-1.1/pairs.d.ts +10 -0
  195. package/dist/schema/yaml-1.1/pairs.js +81 -0
  196. package/dist/schema/yaml-1.1/schema.d.ts +1 -0
  197. package/dist/schema/yaml-1.1/schema.js +39 -0
  198. package/dist/schema/yaml-1.1/set.d.ts +22 -0
  199. package/dist/schema/yaml-1.1/set.js +90 -0
  200. package/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
  201. package/dist/schema/yaml-1.1/timestamp.js +105 -0
  202. package/dist/stringify/foldFlowLines.d.ts +34 -0
  203. package/dist/stringify/foldFlowLines.js +140 -0
  204. package/dist/stringify/stringify.d.ts +20 -0
  205. package/dist/stringify/stringify.js +127 -0
  206. package/dist/stringify/stringifyCollection.d.ts +17 -0
  207. package/dist/stringify/stringifyCollection.js +154 -0
  208. package/dist/stringify/stringifyComment.d.ts +10 -0
  209. package/dist/stringify/stringifyComment.js +22 -0
  210. package/dist/stringify/stringifyDocument.d.ts +3 -0
  211. package/dist/stringify/stringifyDocument.js +88 -0
  212. package/dist/stringify/stringifyNumber.d.ts +2 -0
  213. package/dist/stringify/stringifyNumber.js +26 -0
  214. package/dist/stringify/stringifyPair.d.ts +3 -0
  215. package/dist/stringify/stringifyPair.js +124 -0
  216. package/dist/stringify/stringifyString.d.ts +3 -0
  217. package/dist/stringify/stringifyString.js +316 -0
  218. package/dist/test-events.d.ts +4 -0
  219. package/dist/test-events.js +125 -151
  220. package/dist/util.d.ts +9 -0
  221. package/dist/util.js +19 -14
  222. package/dist/visit.d.ts +102 -0
  223. package/dist/visit.js +237 -0
  224. package/package.json +49 -51
  225. package/util.d.ts +3 -86
  226. package/util.js +2 -16
  227. package/browser/dist/PlainValue-6b68dc0e.js +0 -1279
  228. package/browser/dist/Schema-d14032c2.js +0 -1047
  229. package/browser/dist/parse-6e806192.js +0 -1904
  230. package/browser/dist/parse-cst.js +0 -2
  231. package/browser/dist/resolveSeq-3477c430.js +0 -2478
  232. package/browser/dist/types.js +0 -3
  233. package/browser/parse-cst.js +0 -1
  234. package/browser/types.js +0 -1
  235. package/browser/util.js +0 -1
  236. package/dist/Document-59bd9290.js +0 -803
  237. package/dist/PlainValue-ec8e588e.js +0 -876
  238. package/dist/Schema-fe1471c4.js +0 -808
  239. package/dist/parse-ab8de154.js +0 -1748
  240. package/dist/parse-cst.js +0 -8
  241. package/dist/resolveSeq-6b2dc4ac.js +0 -2217
  242. package/dist/types.js +0 -22
  243. package/index.d.ts +0 -411
  244. package/index.js +0 -1
  245. package/parse-cst.d.ts +0 -187
  246. package/parse-cst.js +0 -1
  247. package/types.d.ts +0 -379
  248. package/types.js +0 -17
  249. package/types.mjs +0 -17
  250. package/util.mjs +0 -18
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2018 Eemeli Aro <eemeli@gmail.com>
1
+ Copyright Eemeli Aro <eemeli@gmail.com>
2
2
 
3
3
  Permission to use, copy, modify, and/or distribute this software for any purpose
4
4
  with or without fee is hereby granted, provided that the above copyright notice
package/README.md CHANGED
@@ -1,26 +1,37 @@
1
- # YAML <a href="https://www.npmjs.com/package/yaml"><img align="right" src="https://badge.fury.io/js/yaml.svg" title="npm package" /></a><a href="https://travis-ci.org/eemeli/yaml"><img align="right" src="https://travis-ci.org/eemeli/yaml.svg?branch=master" title="Build status" /></a>
1
+ # YAML <a href="https://www.npmjs.com/package/yaml"><img align="right" src="https://badge.fury.io/js/yaml.svg" title="npm package" /></a>
2
2
 
3
- `yaml` is a JavaScript parser and stringifier for [YAML](http://yaml.org/), a human friendly data serialization standard. It supports both parsing and stringifying data using all versions of YAML, along with all common data schemas. As a particularly distinguishing feature, `yaml` fully supports reading and writing comments and blank lines in YAML documents.
3
+ `yaml` is a definitive library for [YAML](http://yaml.org/), the human friendly data serialization standard.
4
+ This library:
4
5
 
5
- The library is released under the ISC open source license, and the code is [available on GitHub](https://github.com/eemeli/yaml/). It has no external dependencies and runs on Node.js 6 and later, and in browsers from IE 11 upwards.
6
+ - Supports both YAML 1.1 and YAML 1.2 and all common data schemas,
7
+ - Passes all of the [yaml-test-suite](https://github.com/yaml/yaml-test-suite) tests,
8
+ - Can accept any string as input without throwing, parsing as much YAML out of it as it can, and
9
+ - Supports parsing, modifying, and writing YAML comments and blank lines.
6
10
 
7
- For the purposes of versioning, any changes that break any of the endpoints or APIs documented here will be considered semver-major breaking changes. Undocumented library internals may change between minor versions, and previous APIs may be deprecated (but not removed).
11
+ The library is released under the ISC open source license, and the code is [available on GitHub](https://github.com/eemeli/yaml/).
12
+ It has no external dependencies and runs on Node.js as well as modern browsers.
13
+
14
+ For the purposes of versioning, any changes that break any of the documented endpoints or APIs will be considered semver-major breaking changes.
15
+ Undocumented library internals may change between minor versions, and previous APIs may be deprecated (but not removed).
8
16
 
9
17
  For more information, see the project's documentation site: [**eemeli.org/yaml**](https://eemeli.org/yaml/)
10
18
 
11
19
  To install:
12
20
 
13
21
  ```sh
14
- npm install yaml@next
22
+ npm install --save-exact yaml@next
15
23
  ```
16
24
 
17
25
  **Note:** These docs are for `yaml@2`. For v1, see the [v1.10.0 tag](https://github.com/eemeli/yaml/tree/v1.10.0) for the source and [eemeli.org/yaml/v1](https://eemeli.org/yaml/v1/) for the documentation.
18
26
 
19
27
  ## API Overview
20
28
 
21
- The API provided by `yaml` has three layers, depending on how deep you need to go: [Parse & Stringify](https://eemeli.org/yaml/#parse-amp-stringify), [Documents](https://eemeli.org/yaml/#documents), and the [CST Parser](https://eemeli.org/yaml/#cst-parser). The first has the simplest API and "just works", the second gets you all the bells and whistles supported by the library along with a decent [AST](https://eemeli.org/yaml/#content-nodes), and the third is the closest to YAML source, making it fast, raw, and crude.
29
+ The API provided by `yaml` has three layers, depending on how deep you need to go: [Parse & Stringify](https://eemeli.org/yaml/#parse-amp-stringify), [Documents](https://eemeli.org/yaml/#documents), and the underlying [Lexer/Parser/Composer](https://eemeli.org/yaml/#parsing-yaml).
30
+ The first has the simplest API and "just works", the second gets you all the bells and whistles supported by the library along with a decent [AST](https://eemeli.org/yaml/#content-nodes), and the third lets you get progressively closer to YAML source, if that's your thing.
22
31
 
23
32
  ```js
33
+ import { parse, stringify } from 'yaml'
34
+ // or
24
35
  import YAML from 'yaml'
25
36
  // or
26
37
  const YAML = require('yaml')
@@ -28,38 +39,44 @@ const YAML = require('yaml')
28
39
 
29
40
  ### Parse & Stringify
30
41
 
31
- - [`YAML.parse(str, options): value`](https://eemeli.org/yaml/#yaml-parse)
32
- - [`YAML.stringify(value, options): string`](https://eemeli.org/yaml/#yaml-stringify)
42
+ - [`parse(str, reviver?, options?): value`](https://eemeli.org/yaml/#yaml-parse)
43
+ - [`stringify(value, replacer?, options?): string`](https://eemeli.org/yaml/#yaml-stringify)
33
44
 
34
- ### YAML Documents
45
+ ### Documents
35
46
 
36
- - [`YAML.defaultOptions`](https://eemeli.org/yaml/#options)
37
- - [`YAML.Document`](https://eemeli.org/yaml/#yaml-documents)
38
- - [`constructor(value, options)`](https://eemeli.org/yaml/#creating-documents)
39
- - [`defaults`](https://eemeli.org/yaml/#options)
40
- - [`#createNode(value, options): Node`](https://eemeli.org/yaml/#creating-nodes)
47
+ - [`Document`](https://eemeli.org/yaml/#documents)
48
+ - [`constructor(value, replacer?, options?)`](https://eemeli.org/yaml/#creating-documents)
41
49
  - [`#anchors`](https://eemeli.org/yaml/#working-with-anchors)
42
50
  - [`#contents`](https://eemeli.org/yaml/#content-nodes)
51
+ - [`#directives`](https://eemeli.org/yaml/#stream-directives)
43
52
  - [`#errors`](https://eemeli.org/yaml/#errors)
44
- - [`YAML.parseAllDocuments(str, options): YAML.Document[]`](https://eemeli.org/yaml/#parsing-documents)
45
- - [`YAML.parseDocument(str, options): YAML.Document`](https://eemeli.org/yaml/#parsing-documents)
46
-
47
- ```js
48
- import { Pair, YAMLMap, YAMLSeq } from 'yaml/types'
49
- ```
50
-
51
- - [`new Pair(key, value)`](https://eemeli.org/yaml/#creating-nodes)
52
- - [`new YAMLMap()`](https://eemeli.org/yaml/#creating-nodes)
53
- - [`new YAMLSeq()`](https://eemeli.org/yaml/#creating-nodes)
54
-
55
- ### CST Parser
56
-
57
- ```js
58
- import parseCST from 'yaml/parse-cst'
59
- ```
60
-
61
- - [`parseCST(str): CSTDocument[]`](https://eemeli.org/yaml/#parsecst)
62
- - [`YAML.parseCST(str): CSTDocument[]`](https://eemeli.org/yaml/#parsecst)
53
+ - [`#warnings`](https://eemeli.org/yaml/#errors)
54
+ - [`isDocument(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
55
+ - [`parseAllDocuments(str, options?): Document[]`](https://eemeli.org/yaml/#parsing-documents)
56
+ - [`parseDocument(str, options?): Document`](https://eemeli.org/yaml/#parsing-documents)
57
+
58
+ ### Content Nodes
59
+
60
+ - [`isAlias(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
61
+ - [`isCollection(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
62
+ - [`isMap(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
63
+ - [`isNode(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
64
+ - [`isPair(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
65
+ - [`isScalar(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
66
+ - [`isSeq(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
67
+ - [`new Scalar(value)`](https://eemeli.org/yaml/#scalar-values)
68
+ - [`new YAMLMap()`](https://eemeli.org/yaml/#collections)
69
+ - [`new YAMLSeq()`](https://eemeli.org/yaml/#collections)
70
+ - [`doc.createAlias(node, name?): Alias`](https://eemeli.org/yaml/#working-with-anchors)
71
+ - [`doc.createNode(value, options?): Node`](https://eemeli.org/yaml/#creating-nodes)
72
+ - [`doc.createPair(key, value): Pair`](https://eemeli.org/yaml/#creating-nodes)
73
+ - [`visit(node, visitor)`](https://eemeli.org/yaml/#modifying-nodes)
74
+
75
+ ### Parsing YAML
76
+
77
+ - [`new Lexer().lex(src)`](https://eemeli.org/yaml/#lexer)
78
+ - [`new Parser(onNewLine?).parse(src)`](https://eemeli.org/yaml/#parser)
79
+ - [`new Composer(options?).compose(tokens)`](https://eemeli.org/yaml/#composer)
63
80
 
64
81
  ## YAML.parse
65
82
 
@@ -111,9 +128,8 @@ YAML.stringify([true, false, 'maybe', null])
111
128
  YAML.stringify({ number: 3, plain: 'string', block: 'two\nlines\n' })
112
129
  // `number: 3
113
130
  // plain: string
114
- // block: >
131
+ // block: |
115
132
  // two
116
- //
117
133
  // lines
118
134
  // `
119
135
  ```
@@ -0,0 +1,59 @@
1
+ import { isNode, isMap } from '../nodes/Node.js';
2
+ import { Scalar } from '../nodes/Scalar.js';
3
+ import { resolveBlockMap } from './resolve-block-map.js';
4
+ import { resolveBlockSeq } from './resolve-block-seq.js';
5
+ import { resolveFlowCollection } from './resolve-flow-collection.js';
6
+
7
+ function composeCollection(CN, ctx, token, tagToken, onError) {
8
+ let coll;
9
+ switch (token.type) {
10
+ case 'block-map': {
11
+ coll = resolveBlockMap(CN, ctx, token, onError);
12
+ break;
13
+ }
14
+ case 'block-seq': {
15
+ coll = resolveBlockSeq(CN, ctx, token, onError);
16
+ break;
17
+ }
18
+ case 'flow-collection': {
19
+ coll = resolveFlowCollection(CN, ctx, token, onError);
20
+ break;
21
+ }
22
+ }
23
+ if (!tagToken)
24
+ return coll;
25
+ const tagName = ctx.directives.tagName(tagToken.source, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg));
26
+ if (!tagName)
27
+ return coll;
28
+ // Cast needed due to: https://github.com/Microsoft/TypeScript/issues/3841
29
+ const Coll = coll.constructor;
30
+ if (tagName === '!' || tagName === Coll.tagName) {
31
+ coll.tag = Coll.tagName;
32
+ return coll;
33
+ }
34
+ const expType = isMap(coll) ? 'map' : 'seq';
35
+ let tag = ctx.schema.tags.find(t => t.collection === expType && t.tag === tagName);
36
+ if (!tag) {
37
+ const kt = ctx.schema.knownTags[tagName];
38
+ if (kt && kt.collection === expType) {
39
+ ctx.schema.tags.push(Object.assign({}, kt, { default: false }));
40
+ tag = kt;
41
+ }
42
+ else {
43
+ onError(tagToken, 'TAG_RESOLVE_FAILED', `Unresolved tag: ${tagName}`, true);
44
+ coll.tag = tagName;
45
+ return coll;
46
+ }
47
+ }
48
+ const res = tag.resolve(coll, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg), ctx.options);
49
+ const node = isNode(res)
50
+ ? res
51
+ : new Scalar(res);
52
+ node.range = coll.range;
53
+ node.tag = tagName;
54
+ if (tag === null || tag === void 0 ? void 0 : tag.format)
55
+ node.format = tag.format;
56
+ return node;
57
+ }
58
+
59
+ export { composeCollection };
@@ -0,0 +1,40 @@
1
+ import { Document } from '../doc/Document.js';
2
+ import { composeNode, composeEmptyNode } from './compose-node.js';
3
+ import { resolveEnd } from './resolve-end.js';
4
+ import { resolveProps } from './resolve-props.js';
5
+
6
+ function composeDoc(options, directives, { offset, start, value, end }, onError) {
7
+ const opts = Object.assign({ directives }, options);
8
+ const doc = new Document(undefined, opts);
9
+ const ctx = {
10
+ atRoot: true,
11
+ directives: doc.directives,
12
+ options: doc.options,
13
+ schema: doc.schema
14
+ };
15
+ const props = resolveProps(start, {
16
+ indicator: 'doc-start',
17
+ next: value || (end === null || end === void 0 ? void 0 : end[0]),
18
+ offset,
19
+ onError,
20
+ startOnNewline: true
21
+ });
22
+ if (props.found) {
23
+ doc.directives.docStart = true;
24
+ if (value &&
25
+ (value.type === 'block-map' || value.type === 'block-seq') &&
26
+ !props.hasNewline)
27
+ onError(props.end, 'MISSING_CHAR', 'Block collection cannot start on same line with directives-end marker');
28
+ }
29
+ doc.contents = value
30
+ ? composeNode(ctx, value, props, onError)
31
+ : composeEmptyNode(ctx, props.end, start, null, props, onError);
32
+ const contentEnd = doc.contents.range[2];
33
+ const re = resolveEnd(end, contentEnd, false, onError);
34
+ if (re.comment)
35
+ doc.comment = re.comment;
36
+ doc.range = [offset, contentEnd, re.offset];
37
+ return doc;
38
+ }
39
+
40
+ export { composeDoc };
@@ -0,0 +1,90 @@
1
+ import { Alias } from '../nodes/Alias.js';
2
+ import { composeCollection } from './compose-collection.js';
3
+ import { composeScalar } from './compose-scalar.js';
4
+ import { resolveEnd } from './resolve-end.js';
5
+ import { emptyScalarPosition } from './util-empty-scalar-position.js';
6
+
7
+ const CN = { composeNode, composeEmptyNode };
8
+ function composeNode(ctx, token, props, onError) {
9
+ const { spaceBefore, comment, anchor, tag } = props;
10
+ let node;
11
+ let isSrcToken = true;
12
+ switch (token.type) {
13
+ case 'alias':
14
+ node = composeAlias(ctx, token, onError);
15
+ if (anchor || tag)
16
+ onError(token, 'ALIAS_PROPS', 'An alias node must not specify any properties');
17
+ break;
18
+ case 'scalar':
19
+ case 'single-quoted-scalar':
20
+ case 'double-quoted-scalar':
21
+ case 'block-scalar':
22
+ node = composeScalar(ctx, token, tag, onError);
23
+ if (anchor)
24
+ node.anchor = anchor.source.substring(1);
25
+ break;
26
+ case 'block-map':
27
+ case 'block-seq':
28
+ case 'flow-collection':
29
+ node = composeCollection(CN, ctx, token, tag, onError);
30
+ if (anchor)
31
+ node.anchor = anchor.source.substring(1);
32
+ break;
33
+ default: {
34
+ const message = token.type === 'error'
35
+ ? token.message
36
+ : `Unsupported token (type: ${token.type})`;
37
+ onError(token, 'UNEXPECTED_TOKEN', message);
38
+ node = composeEmptyNode(ctx, token.offset, undefined, null, props, onError);
39
+ isSrcToken = false;
40
+ }
41
+ }
42
+ if (anchor && node.anchor === '')
43
+ onError(anchor, 'BAD_ALIAS', 'Anchor cannot be an empty string');
44
+ if (spaceBefore)
45
+ node.spaceBefore = true;
46
+ if (comment) {
47
+ if (token.type === 'scalar' && token.source === '')
48
+ node.comment = comment;
49
+ else
50
+ node.commentBefore = comment;
51
+ }
52
+ // @ts-expect-error Type checking misses meaning of isSrcToken
53
+ if (ctx.options.keepSourceTokens && isSrcToken)
54
+ node.srcToken = token;
55
+ return node;
56
+ }
57
+ function composeEmptyNode(ctx, offset, before, pos, { spaceBefore, comment, anchor, tag }, onError) {
58
+ const token = {
59
+ type: 'scalar',
60
+ offset: emptyScalarPosition(offset, before, pos),
61
+ indent: -1,
62
+ source: ''
63
+ };
64
+ const node = composeScalar(ctx, token, tag, onError);
65
+ if (anchor) {
66
+ node.anchor = anchor.source.substring(1);
67
+ if (node.anchor === '')
68
+ onError(anchor, 'BAD_ALIAS', 'Anchor cannot be an empty string');
69
+ }
70
+ if (spaceBefore)
71
+ node.spaceBefore = true;
72
+ if (comment)
73
+ node.comment = comment;
74
+ return node;
75
+ }
76
+ function composeAlias({ options }, { offset, source, end }, onError) {
77
+ const alias = new Alias(source.substring(1));
78
+ if (alias.source === '')
79
+ onError(offset, 'BAD_ALIAS', 'Alias cannot be an empty string');
80
+ if (alias.source.endsWith(':'))
81
+ onError(offset + source.length - 1, 'BAD_ALIAS', 'Alias ending in : is ambiguous', true);
82
+ const valueEnd = offset + source.length;
83
+ const re = resolveEnd(end, valueEnd, options.strict, onError);
84
+ alias.range = [offset, valueEnd, re.offset];
85
+ if (re.comment)
86
+ alias.comment = re.comment;
87
+ return alias;
88
+ }
89
+
90
+ export { composeEmptyNode, composeNode };
@@ -0,0 +1,81 @@
1
+ import { SCALAR, isScalar } from '../nodes/Node.js';
2
+ import { Scalar } from '../nodes/Scalar.js';
3
+ import { resolveBlockScalar } from './resolve-block-scalar.js';
4
+ import { resolveFlowScalar } from './resolve-flow-scalar.js';
5
+
6
+ function composeScalar(ctx, token, tagToken, onError) {
7
+ const { value, type, comment, range } = token.type === 'block-scalar'
8
+ ? resolveBlockScalar(token, ctx.options.strict, onError)
9
+ : resolveFlowScalar(token, ctx.options.strict, onError);
10
+ const tagName = tagToken
11
+ ? ctx.directives.tagName(tagToken.source, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg))
12
+ : null;
13
+ const tag = tagToken && tagName
14
+ ? findScalarTagByName(ctx.schema, value, tagName, tagToken, onError)
15
+ : token.type === 'scalar'
16
+ ? findScalarTagByTest(ctx, value, token, onError)
17
+ : ctx.schema[SCALAR];
18
+ let scalar;
19
+ try {
20
+ const res = tag.resolve(value, msg => onError(tagToken || token, 'TAG_RESOLVE_FAILED', msg), ctx.options);
21
+ scalar = isScalar(res) ? res : new Scalar(res);
22
+ }
23
+ catch (error) {
24
+ const msg = error instanceof Error ? error.message : String(error);
25
+ onError(tagToken || token, 'TAG_RESOLVE_FAILED', msg);
26
+ scalar = new Scalar(value);
27
+ }
28
+ scalar.range = range;
29
+ scalar.source = value;
30
+ if (type)
31
+ scalar.type = type;
32
+ if (tagName)
33
+ scalar.tag = tagName;
34
+ if (tag.format)
35
+ scalar.format = tag.format;
36
+ if (comment)
37
+ scalar.comment = comment;
38
+ return scalar;
39
+ }
40
+ function findScalarTagByName(schema, value, tagName, tagToken, onError) {
41
+ var _a;
42
+ if (tagName === '!')
43
+ return schema[SCALAR]; // non-specific tag
44
+ const matchWithTest = [];
45
+ for (const tag of schema.tags) {
46
+ if (!tag.collection && tag.tag === tagName) {
47
+ if (tag.default && tag.test)
48
+ matchWithTest.push(tag);
49
+ else
50
+ return tag;
51
+ }
52
+ }
53
+ for (const tag of matchWithTest)
54
+ if ((_a = tag.test) === null || _a === void 0 ? void 0 : _a.test(value))
55
+ return tag;
56
+ const kt = schema.knownTags[tagName];
57
+ if (kt && !kt.collection) {
58
+ // Ensure that the known tag is available for stringifying,
59
+ // but does not get used by default.
60
+ schema.tags.push(Object.assign({}, kt, { default: false, test: undefined }));
61
+ return kt;
62
+ }
63
+ onError(tagToken, 'TAG_RESOLVE_FAILED', `Unresolved tag: ${tagName}`, tagName !== 'tag:yaml.org,2002:str');
64
+ return schema[SCALAR];
65
+ }
66
+ function findScalarTagByTest({ directives, schema }, value, token, onError) {
67
+ const tag = schema.tags.find(tag => { var _a; return tag.default && ((_a = tag.test) === null || _a === void 0 ? void 0 : _a.test(value)); }) || schema[SCALAR];
68
+ if (schema.compat) {
69
+ const compat = schema.compat.find(tag => { var _a; return tag.default && ((_a = tag.test) === null || _a === void 0 ? void 0 : _a.test(value)); }) ||
70
+ schema[SCALAR];
71
+ if (tag.tag !== compat.tag) {
72
+ const ts = directives.tagString(tag.tag);
73
+ const cs = directives.tagString(compat.tag);
74
+ const msg = `Value may be parsed as either ${ts} or ${cs}`;
75
+ onError(token, 'TAG_RESOLVE_FAILED', msg, true);
76
+ }
77
+ }
78
+ return tag;
79
+ }
80
+
81
+ export { composeScalar };
@@ -0,0 +1,217 @@
1
+ import { Directives } from '../doc/directives.js';
2
+ import { Document } from '../doc/Document.js';
3
+ import { YAMLWarning, YAMLParseError } from '../errors.js';
4
+ import { isCollection, isPair } from '../nodes/Node.js';
5
+ import { composeDoc } from './compose-doc.js';
6
+ import { resolveEnd } from './resolve-end.js';
7
+
8
+ function getErrorPos(src) {
9
+ if (typeof src === 'number')
10
+ return [src, src + 1];
11
+ if (Array.isArray(src))
12
+ return src.length === 2 ? src : [src[0], src[1]];
13
+ const { offset, source } = src;
14
+ return [offset, offset + (typeof source === 'string' ? source.length : 1)];
15
+ }
16
+ function parsePrelude(prelude) {
17
+ var _a;
18
+ let comment = '';
19
+ let atComment = false;
20
+ let afterEmptyLine = false;
21
+ for (let i = 0; i < prelude.length; ++i) {
22
+ const source = prelude[i];
23
+ switch (source[0]) {
24
+ case '#':
25
+ comment +=
26
+ (comment === '' ? '' : afterEmptyLine ? '\n\n' : '\n') +
27
+ (source.substring(1) || ' ');
28
+ atComment = true;
29
+ afterEmptyLine = false;
30
+ break;
31
+ case '%':
32
+ if (((_a = prelude[i + 1]) === null || _a === void 0 ? void 0 : _a[0]) !== '#')
33
+ i += 1;
34
+ atComment = false;
35
+ break;
36
+ default:
37
+ // This may be wrong after doc-end, but in that case it doesn't matter
38
+ if (!atComment)
39
+ afterEmptyLine = true;
40
+ atComment = false;
41
+ }
42
+ }
43
+ return { comment, afterEmptyLine };
44
+ }
45
+ /**
46
+ * Compose a stream of CST nodes into a stream of YAML Documents.
47
+ *
48
+ * ```ts
49
+ * import { Composer, Parser } from 'yaml'
50
+ *
51
+ * const src: string = ...
52
+ * const tokens = new Parser().parse(src)
53
+ * const docs = new Composer().compose(tokens)
54
+ * ```
55
+ */
56
+ class Composer {
57
+ constructor(options = {}) {
58
+ this.doc = null;
59
+ this.atDirectives = false;
60
+ this.prelude = [];
61
+ this.errors = [];
62
+ this.warnings = [];
63
+ this.onError = (source, code, message, warning) => {
64
+ const pos = getErrorPos(source);
65
+ if (warning)
66
+ this.warnings.push(new YAMLWarning(pos, code, message));
67
+ else
68
+ this.errors.push(new YAMLParseError(pos, code, message));
69
+ };
70
+ this.directives = new Directives({ version: options.version || '1.2' });
71
+ this.options = options;
72
+ }
73
+ decorate(doc, afterDoc) {
74
+ const { comment, afterEmptyLine } = parsePrelude(this.prelude);
75
+ //console.log({ dc: doc.comment, prelude, comment })
76
+ if (comment) {
77
+ const dc = doc.contents;
78
+ if (afterDoc) {
79
+ doc.comment = doc.comment ? `${doc.comment}\n${comment}` : comment;
80
+ }
81
+ else if (afterEmptyLine || doc.directives.docStart || !dc) {
82
+ doc.commentBefore = comment;
83
+ }
84
+ else if (isCollection(dc) && !dc.flow && dc.items.length > 0) {
85
+ let it = dc.items[0];
86
+ if (isPair(it))
87
+ it = it.key;
88
+ const cb = it.commentBefore;
89
+ it.commentBefore = cb ? `${comment}\n${cb}` : comment;
90
+ }
91
+ else {
92
+ const cb = dc.commentBefore;
93
+ dc.commentBefore = cb ? `${comment}\n${cb}` : comment;
94
+ }
95
+ }
96
+ if (afterDoc) {
97
+ Array.prototype.push.apply(doc.errors, this.errors);
98
+ Array.prototype.push.apply(doc.warnings, this.warnings);
99
+ }
100
+ else {
101
+ doc.errors = this.errors;
102
+ doc.warnings = this.warnings;
103
+ }
104
+ this.prelude = [];
105
+ this.errors = [];
106
+ this.warnings = [];
107
+ }
108
+ /**
109
+ * Current stream status information.
110
+ *
111
+ * Mostly useful at the end of input for an empty stream.
112
+ */
113
+ streamInfo() {
114
+ return {
115
+ comment: parsePrelude(this.prelude).comment,
116
+ directives: this.directives,
117
+ errors: this.errors,
118
+ warnings: this.warnings
119
+ };
120
+ }
121
+ /**
122
+ * Compose tokens into documents.
123
+ *
124
+ * @param forceDoc - If the stream contains no document, still emit a final document including any comments and directives that would be applied to a subsequent document.
125
+ * @param endOffset - Should be set if `forceDoc` is also set, to set the document range end and to indicate errors correctly.
126
+ */
127
+ *compose(tokens, forceDoc = false, endOffset = -1) {
128
+ for (const token of tokens)
129
+ yield* this.next(token);
130
+ yield* this.end(forceDoc, endOffset);
131
+ }
132
+ /** Advance the composer by one CST token. */
133
+ *next(token) {
134
+ switch (token.type) {
135
+ case 'directive':
136
+ this.directives.add(token.source, (offset, message, warning) => {
137
+ const pos = getErrorPos(token);
138
+ pos[0] += offset;
139
+ this.onError(pos, 'BAD_DIRECTIVE', message, warning);
140
+ });
141
+ this.prelude.push(token.source);
142
+ this.atDirectives = true;
143
+ break;
144
+ case 'document': {
145
+ const doc = composeDoc(this.options, this.directives, token, this.onError);
146
+ if (this.atDirectives && !doc.directives.docStart)
147
+ this.onError(token, 'MISSING_CHAR', 'Missing directives-end/doc-start indicator line');
148
+ this.decorate(doc, false);
149
+ if (this.doc)
150
+ yield this.doc;
151
+ this.doc = doc;
152
+ this.atDirectives = false;
153
+ break;
154
+ }
155
+ case 'byte-order-mark':
156
+ case 'space':
157
+ break;
158
+ case 'comment':
159
+ case 'newline':
160
+ this.prelude.push(token.source);
161
+ break;
162
+ case 'error': {
163
+ const msg = token.source
164
+ ? `${token.message}: ${JSON.stringify(token.source)}`
165
+ : token.message;
166
+ const error = new YAMLParseError(getErrorPos(token), 'UNEXPECTED_TOKEN', msg);
167
+ if (this.atDirectives || !this.doc)
168
+ this.errors.push(error);
169
+ else
170
+ this.doc.errors.push(error);
171
+ break;
172
+ }
173
+ case 'doc-end': {
174
+ if (!this.doc) {
175
+ const msg = 'Unexpected doc-end without preceding document';
176
+ this.errors.push(new YAMLParseError(getErrorPos(token), 'UNEXPECTED_TOKEN', msg));
177
+ break;
178
+ }
179
+ this.doc.directives.docEnd = true;
180
+ const end = resolveEnd(token.end, token.offset + token.source.length, this.doc.options.strict, this.onError);
181
+ this.decorate(this.doc, true);
182
+ if (end.comment) {
183
+ const dc = this.doc.comment;
184
+ this.doc.comment = dc ? `${dc}\n${end.comment}` : end.comment;
185
+ }
186
+ this.doc.range[2] = end.offset;
187
+ break;
188
+ }
189
+ default:
190
+ this.errors.push(new YAMLParseError(getErrorPos(token), 'UNEXPECTED_TOKEN', `Unsupported token ${token.type}`));
191
+ }
192
+ }
193
+ /**
194
+ * Call at end of input to yield any remaining document.
195
+ *
196
+ * @param forceDoc - If the stream contains no document, still emit a final document including any comments and directives that would be applied to a subsequent document.
197
+ * @param endOffset - Should be set if `forceDoc` is also set, to set the document range end and to indicate errors correctly.
198
+ */
199
+ *end(forceDoc = false, endOffset = -1) {
200
+ if (this.doc) {
201
+ this.decorate(this.doc, true);
202
+ yield this.doc;
203
+ this.doc = null;
204
+ }
205
+ else if (forceDoc) {
206
+ const opts = Object.assign({ directives: this.directives }, this.options);
207
+ const doc = new Document(undefined, opts);
208
+ if (this.atDirectives)
209
+ this.onError(endOffset, 'MISSING_CHAR', 'Missing directives-end indicator line');
210
+ doc.range = [0, endOffset, endOffset];
211
+ this.decorate(doc, false);
212
+ yield doc;
213
+ }
214
+ }
215
+ }
216
+
217
+ export { Composer };