yaml-ast-parser

WebJar for yaml-ast-parser

Лицензия

Лицензия

Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

yaml-ast-parser
Последняя версия

Последняя версия

0.0.43
Дата

Дата

Тип

Тип

jar
Описание

Описание

yaml-ast-parser
WebJar for yaml-ast-parser
Ссылка на сайт

Ссылка на сайт

https://www.webjars.org
Система контроля версий

Система контроля версий

https://github.com/mulesoft-labs/yaml-ast-parser

Скачать yaml-ast-parser

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/yaml-ast-parser/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>yaml-ast-parser</artifactId>
    <version>0.0.43</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/yaml-ast-parser/
implementation 'org.webjars.npm:yaml-ast-parser:0.0.43'
// https://jarcasting.com/artifacts/org.webjars.npm/yaml-ast-parser/
implementation ("org.webjars.npm:yaml-ast-parser:0.0.43")
'org.webjars.npm:yaml-ast-parser:jar:0.0.43'
<dependency org="org.webjars.npm" name="yaml-ast-parser" rev="0.0.43">
  <artifact name="yaml-ast-parser" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='yaml-ast-parser', version='0.0.43')
)
libraryDependencies += "org.webjars.npm" % "yaml-ast-parser" % "0.0.43"
[org.webjars.npm/yaml-ast-parser "0.0.43"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

yaml-ast-parser

Build Status

This is a fork of JS-YAML which supports parsing of YAML into AST.

In additional to parsing YAML to AST, it has following features:

  • restoration after the errors and reporting errors as a part of AST nodes.
  • built-in support for !include tag used in RAML

Usage

The type information below is relevant when using TypeScript, if using from JavaScript only the field/method information is relevant.

load method can be used to load the tree and returns a YAMLNode.

YAMLNode

YAMLNode class is an ancestor for all node kinds. It's kind field determine node kind, one of Kind enum:

  • SCALAR, MAPPING, MAP, SEQ, ANCHOR_REF or INCLUDE_REF.

After node kind is determined, it can be cast to one of the YAMLNode descendants types:

  • YAMLScalar, YAMLMapping, YamlMap, YAMLSequence or YAMLAnchorReference.
class important members
YAMLNode startPosition and endPosition provide node range.
YAMLScalar string value field
YAMLMapping YAMLScalar key and YAMLNode value fields
YAMLSequence YAMLNode[] items field
YamlMap YAMLMapping[] mappings field
YAMLAnchorReference string referencesAnchor and YAMLNode value

YAMLScalar

Scalars are one of the three main node types defined by YAML and are effectively leaf nodes.

There are many factors that can influence the type of datum represent in scalar node (context, schema, tag, etc.).

To help inspection of a YAMLScalar to determine its datatype when a document uses the Core Schema, you can pass the YAMLScalar to the determineScalarType function. It will return an enum value indicating null, bool, int, float, or string.

Once you know the type, there are also some helper functions to help read the value by passing them the string, value: parseYamlBoolean, parseYamlFloat, and parseYamlInteger.

org.webjars.npm

Mulesoft Labs

Версии библиотеки

Версия
0.0.43
0.0.40