mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
16 lines
243 B
JavaScript
16 lines
243 B
JavaScript
'use strict';
|
|
|
|
const Container = require('./container');
|
|
const Node = require('./node');
|
|
|
|
class Word extends Node {
|
|
constructor (opts) {
|
|
super(opts);
|
|
this.type = 'word';
|
|
}
|
|
}
|
|
|
|
Container.registerWalker(Word);
|
|
|
|
module.exports = Word;
|