選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415
  1. 'use strict';
  2. const Container = require('./container');
  3. const Node = require('./node');
  4. class Comma extends Node {
  5. constructor (opts) {
  6. super(opts);
  7. this.type = 'comma';
  8. }
  9. }
  10. Container.registerWalker(Comma);
  11. module.exports = Comma;