pegjs/lib/ast/Node.js
2018-01-28 02:00:28 +00:00

15 lines
160 B
JavaScript

"use strict";
class Node {
constructor( type, location ) {
this.type = type;
this.location = location;
}
}
module.exports = Node;