mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
17 lines
290 B
JavaScript
17 lines
290 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const Container = require('./container');
|
||
|
const Node = require('./node');
|
||
|
|
||
|
class Parenthesis extends Node {
|
||
|
constructor (opts) {
|
||
|
super(opts);
|
||
|
this.type = 'paren';
|
||
|
this.parenType = '';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Container.registerWalker(Parenthesis);
|
||
|
|
||
|
module.exports = Parenthesis;
|