mh-two-thousand-and-two
2024-04-12 7fc6dbf547b8899d949b67cdec36b96a7d1701c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Generated by CoffeeScript 1.12.7
(function() {
  var XMLNodeFilter;
 
  module.exports = XMLNodeFilter = (function() {
    function XMLNodeFilter() {}
 
    XMLNodeFilter.prototype.FilterAccept = 1;
 
    XMLNodeFilter.prototype.FilterReject = 2;
 
    XMLNodeFilter.prototype.FilterSkip = 3;
 
    XMLNodeFilter.prototype.ShowAll = 0xffffffff;
 
    XMLNodeFilter.prototype.ShowElement = 0x1;
 
    XMLNodeFilter.prototype.ShowAttribute = 0x2;
 
    XMLNodeFilter.prototype.ShowText = 0x4;
 
    XMLNodeFilter.prototype.ShowCDataSection = 0x8;
 
    XMLNodeFilter.prototype.ShowEntityReference = 0x10;
 
    XMLNodeFilter.prototype.ShowEntity = 0x20;
 
    XMLNodeFilter.prototype.ShowProcessingInstruction = 0x40;
 
    XMLNodeFilter.prototype.ShowComment = 0x80;
 
    XMLNodeFilter.prototype.ShowDocument = 0x100;
 
    XMLNodeFilter.prototype.ShowDocumentType = 0x200;
 
    XMLNodeFilter.prototype.ShowDocumentFragment = 0x400;
 
    XMLNodeFilter.prototype.ShowNotation = 0x800;
 
    XMLNodeFilter.prototype.acceptNode = function(node) {
      throw new Error("This DOM method is not implemented.");
    };
 
    return XMLNodeFilter;
 
  })();
 
}).call(this);