Last change
on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
290 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | const Container = require('./container');
|
---|
4 | const Node = require('./node');
|
---|
5 |
|
---|
6 | class Parenthesis extends Node {
|
---|
7 | constructor (opts) {
|
---|
8 | super(opts);
|
---|
9 | this.type = 'paren';
|
---|
10 | this.parenType = '';
|
---|
11 | }
|
---|
12 | }
|
---|
13 |
|
---|
14 | Container.registerWalker(Parenthesis);
|
---|
15 |
|
---|
16 | module.exports = Parenthesis;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.