Befor generating
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
"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
|
||||
Reference in New Issue
Block a user