pegjs/lib/ast/Node.js

15 lines
160 B
JavaScript
Raw Normal View History

2018-01-28 03:00:28 +01:00
"use strict";
class Node {
constructor( type, location ) {
this.type = type;
this.location = location;
}
}
module.exports = Node;