main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
491 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | "use strict";
|
---|
| 2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
| 3 | exports.isTraversal = exports.procedure = void 0;
|
---|
| 4 | exports.procedure = {
|
---|
| 5 | universal: 50,
|
---|
| 6 | tag: 30,
|
---|
| 7 | attribute: 1,
|
---|
| 8 | pseudo: 0,
|
---|
| 9 | "pseudo-element": 0,
|
---|
| 10 | "column-combinator": -1,
|
---|
| 11 | descendant: -1,
|
---|
| 12 | child: -1,
|
---|
| 13 | parent: -1,
|
---|
| 14 | sibling: -1,
|
---|
| 15 | adjacent: -1,
|
---|
| 16 | _flexibleDescendant: -1,
|
---|
| 17 | };
|
---|
| 18 | function isTraversal(t) {
|
---|
| 19 | return exports.procedure[t.type] < 0;
|
---|
| 20 | }
|
---|
| 21 | exports.isTraversal = isTraversal;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.