33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var YAML = require("../src/");
|
|
var AbstractVisitor = (function () {
|
|
function AbstractVisitor() {
|
|
}
|
|
AbstractVisitor.prototype.accept = function (node) {
|
|
switch (node.kind) {
|
|
case YAML.Kind.SCALAR: {
|
|
return this.visitScalar(node);
|
|
}
|
|
case YAML.Kind.MAP: {
|
|
return this.visitMap(node);
|
|
}
|
|
case YAML.Kind.MAPPING: {
|
|
return this.visitMapping(node);
|
|
}
|
|
case YAML.Kind.SEQ: {
|
|
return this.visitSequence(node);
|
|
}
|
|
case YAML.Kind.ANCHOR_REF: {
|
|
return this.visitAnchorRef(node);
|
|
}
|
|
case YAML.Kind.INCLUDE_REF: {
|
|
return this.visitIncludeRef(node);
|
|
}
|
|
}
|
|
throw new Error("Kind, " + node.kind + " not implemented.");
|
|
};
|
|
return AbstractVisitor;
|
|
}());
|
|
exports.AbstractVisitor = AbstractVisitor;
|
|
//# sourceMappingURL=visitor.js.map |