ruchy-syntax-tools
Version:
Comprehensive syntax highlighting and language support for the Ruchy programming language
22 lines (15 loc) • 524 B
JavaScript
// Generated by CoffeeScript 1.12.7
(function() {
var Derivation, XMLTypeInfo;
Derivation = require('./Derivation');
module.exports = XMLTypeInfo = (function() {
function XMLTypeInfo(typeName, typeNamespace) {
this.typeName = typeName;
this.typeNamespace = typeNamespace;
}
XMLTypeInfo.prototype.isDerivedFrom = function(typeNamespaceArg, typeNameArg, derivationMethod) {
throw new Error("This DOM method is not implemented.");
};
return XMLTypeInfo;
})();
}).call(this);