main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
356 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | import Node from "../../Node.mjs";
|
---|
| 2 | class YamlNode extends Node {
|
---|
| 3 | anchor;
|
---|
| 4 | tag;
|
---|
| 5 | style;
|
---|
| 6 | styleGroup;
|
---|
| 7 | constructor({
|
---|
| 8 | anchor,
|
---|
| 9 | tag,
|
---|
| 10 | style,
|
---|
| 11 | styleGroup,
|
---|
| 12 | ...rest
|
---|
| 13 | }) {
|
---|
| 14 | super({
|
---|
| 15 | ...rest
|
---|
| 16 | });
|
---|
| 17 | this.anchor = anchor;
|
---|
| 18 | this.tag = tag;
|
---|
| 19 | this.style = style;
|
---|
| 20 | this.styleGroup = styleGroup;
|
---|
| 21 | }
|
---|
| 22 | }
|
---|
| 23 | export default YamlNode; |
---|
Note:
See
TracBrowser
for help on using the repository browser.