15 lines
160 B
JavaScript
15 lines
160 B
JavaScript
"use strict";
|
|
|
|
class Node {
|
|
|
|
constructor( type, location ) {
|
|
|
|
this.type = type;
|
|
this.location = location;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Node;
|