2022-10-21 08:44:44 -06:00
|
|
|
'use strict';
|
|
|
|
|
2024-01-17 02:08:10 -07:00
|
|
|
var identity = require('../../nodes/identity.js');
|
2022-10-21 08:44:44 -06:00
|
|
|
var YAMLMap = require('../../nodes/YAMLMap.js');
|
|
|
|
|
|
|
|
const map = {
|
|
|
|
collection: 'map',
|
|
|
|
default: true,
|
|
|
|
nodeClass: YAMLMap.YAMLMap,
|
|
|
|
tag: 'tag:yaml.org,2002:map',
|
|
|
|
resolve(map, onError) {
|
2024-01-17 02:08:10 -07:00
|
|
|
if (!identity.isMap(map))
|
2022-10-21 08:44:44 -06:00
|
|
|
onError('Expected a mapping for this tag');
|
|
|
|
return map;
|
2024-01-17 02:08:10 -07:00
|
|
|
},
|
|
|
|
createNode: (schema, obj, ctx) => YAMLMap.YAMLMap.from(schema, obj, ctx)
|
2022-10-21 08:44:44 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.map = map;
|