create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
52 lines (30 loc) • 1.22 kB
JavaScript
// Generated by CoffeeScript 2.4.1
(function() {
// Represents a node filter
var XMLNodeFilter;
module.exports = XMLNodeFilter = (function() {
class XMLNodeFilter {
// DOM level 4 functions to be implemented later
acceptNode(node) {
throw new Error("This DOM method is not implemented.");
}
};
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;
return XMLNodeFilter;
}).call(this);
}).call(this);