|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
395 bytes
|
| Line | |
|---|
| 1 | var CDO = require('../../tokenizer').TYPE.CDO;
|
|---|
| 2 |
|
|---|
| 3 | module.exports = {
|
|---|
| 4 | name: 'CDO',
|
|---|
| 5 | structure: [],
|
|---|
| 6 | parse: function() {
|
|---|
| 7 | var start = this.scanner.tokenStart;
|
|---|
| 8 |
|
|---|
| 9 | this.eat(CDO); // <!--
|
|---|
| 10 |
|
|---|
| 11 | return {
|
|---|
| 12 | type: 'CDO',
|
|---|
| 13 | loc: this.getLocation(start, this.scanner.tokenStart)
|
|---|
| 14 | };
|
|---|
| 15 | },
|
|---|
| 16 | generate: function() {
|
|---|
| 17 | this.chunk('<!--');
|
|---|
| 18 | }
|
|---|
| 19 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.