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