UNPKG
@log4b0at/pegjs
Version:
latest (0.11.0)
0.11.0
Parser generator for JavaScript
pegjs.org
pegjs/pegjs
@log4b0at/pegjs
/
lib
/
ast
/
Node.js
15 lines
(8 loc)
•
160 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict"
;
class
Node
{
constructor
(
type
, location
) {
this
.
type
=
type
;
this
.
location
= location; } }
module
.
exports
=
Node
;