Home
last modified time | relevance | path

Searched refs:ctor (Results 1 – 25 of 60) sorted by relevance

123

/plugin/asciidocjs/node_modules/inherits/
Dinherits_browser.js3 module.exports = function inherits(ctor, superCtor) { argument
5 ctor.super_ = superCtor
6 ctor.prototype = Object.create(superCtor.prototype, { class
8 value: ctor,
18 module.exports = function inherits(ctor, superCtor) {
20 ctor.super_ = superCtor
23 ctor.prototype = new TempCtor()
24 ctor.prototype.constructor = ctor
/plugin/asciidocjs/node_modules/uglify-js/tools/
Dnode.js62 function doitem(ctor) { argument
63 out.print("AST_" + ctor.TYPE);
64 var props = ctor.SELF_PROPS.filter(function(prop) {
76 if (ctor.documentation) {
78 out.print_string(ctor.documentation);
80 if (ctor.SUBCLASSES.length > 0) {
83 ctor.SUBCLASSES.sort(function(a, b) {
85 }).forEach(function(ctor, i) { argument
87 doitem(ctor);
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dast.js64 var ctor = new Function(code.join(""))();
65 ctor.prototype = proto; class
66 ctor.prototype.CTOR = ctor;
67 ctor.prototype.TYPE = ctor.TYPE = type;
69 ctor.BASE = base;
70 base.SUBCLASSES.push(ctor);
72 ctor.DEFMETHOD = function(name, method) {
75 ctor.PROPS = props;
76 ctor.SELF_PROPS = self_props;
77 ctor.SUBCLASSES = [];
[all …]
Dpropmangle.js102 var ctor = global[name];
103 if (!ctor) return;
104 Object.getOwnPropertyNames(ctor).map(add);
105 if (typeof ctor != "function") return;
106 if (ctor.__proto__) Object.getOwnPropertyNames(ctor.__proto__).map(add);
107 if (ctor.prototype) Object.getOwnPropertyNames(ctor.prototype).map(add);
109 Object.getOwnPropertyNames(new ctor()).map(add);
112 Object.getOwnPropertyNames(ctor()).map(add);
Dmozilla-ast.js81 var ctor;
83 ctor = M.generator ? AST_AsyncGeneratorDefun : AST_AsyncDefun;
85 ctor = M.generator ? AST_GeneratorDefun : AST_Defun;
95 return new ctor({
105 var ctor;
107 ctor = M.generator ? AST_AsyncGeneratorFunction : AST_AsyncFunction;
109 ctor = M.generator ? AST_GeneratorFunction : AST_Function;
119 return new ctor({
156 var ctor = AST_ClassMethod, value = from_moz(M.value);
159 ctor = AST_ClassGetter;
[all …]
Dparse.js1065 function class_(ctor) { argument
1071 if (ctor === AST_DefClass) {
1184 return new ctor({
1203 var ctor;
1206 ctor = AST_ForAwaitOf;
1209 ctor = AST_ForIn;
1212 ctor = AST_ForOf;
1214 if (ctor) {
1219 if (ctor !== AST_ForIn && init.definitions[0].value) {
1225 return for_enum(ctor, init);
[all …]
Dutils.js271 function DEF_BITPROPS(ctor, props) { argument
275 Object.defineProperty(ctor.prototype, name, {
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/tools/
Dnode.js198 function doitem(ctor) { argument
199 out.print("AST_" + ctor.TYPE);
200 var props = ctor.SELF_PROPS.filter(function(prop){
212 if (ctor.documentation) {
214 out.print_string(ctor.documentation);
216 if (ctor.SUBCLASSES.length > 0) {
219 ctor.SUBCLASSES.forEach(function(ctor, i){ argument
221 doitem(ctor);
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dast.js61 var ctor = new Function(code)();
63 ctor.prototype = proto; class
64 ctor.BASE = base;
66 if (base) base.SUBCLASSES.push(ctor);
67 ctor.prototype.CTOR = ctor;
68 ctor.PROPS = props || null;
69 ctor.SELF_PROPS = self_props;
70 ctor.SUBCLASSES = [];
72 ctor.prototype.TYPE = ctor.TYPE = type;
76 ctor[i.substr(1)] = methods[i];
[all …]
Dpropmangle.js59 ].forEach(function(ctor){ argument
60 Object.getOwnPropertyNames(ctor).map(add);
61 if (ctor.prototype) {
62 Object.getOwnPropertyNames(ctor.prototype).map(add);
Dparse.js1058 var function_ = function(ctor) { argument
1059 var in_statement = ctor === AST_Defun;
1064 return new ctor({
1484 function make_unary(ctor, token, expr) { argument
1488 return new ctor({ operator: op, expression: expr });
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
Daurora.js19 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
305 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
763 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
1341 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
1362 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
1477 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
1559 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
1635 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
1765 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
1863 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
[all …]
/plugin/farmsync/script/
Djquery.chosen.js16 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… class
/plugin/farmer/script/
H A Djquery.chosen.js16 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
/plugin/asciidocjs/node_modules/jake/lib/
Dapi.js369 let ctor = function () {}; function
371 ctor.prototype = jake.TestTask.prototype; class
372 t = new ctor();
/plugin/asciidocjs/node_modules/regenerator-runtime/
Druntime.js120 var ctor = typeof genFun === "function" && genFun.constructor;
121 return ctor
122 ? ctor === GeneratorFunction ||
125 (ctor.displayName || ctor.name) === "GeneratorFunction"
/plugin/diagramsnet/lib/js/orgchart/
DOrgChart.Layout.min.js1ctor:function(contract){OrgChart.Annotations.ContractAnnotationAttribute.$ctor1.call(this,contract… method
Dbridge.min.js8ctor():t&&t.length>0?Bridge.Reflection.applyConstructor(n,t):new n},clone:function(n){if(Bridge.is… method
Dbridge.collections.min.js1ctor:function(n){if(this.$initialize(),n==null)throw new System.ArgumentNullException("values");th… method
/plugin/diagramsnet/lib/js/
Dorgchart.min.js8ctor():t&&t.length>0?Bridge.Reflection.applyConstructor(n,t):new n},clone:function(n){if(Bridge.is… method
/plugin/asciidocjs/node_modules/ejs/lib/
Dejs.js582 var ctor;
659 ctor = (new Function('return (async function(){}).constructor;'))();
671 ctor = Function;
673 fn = new ctor(opts.localsName + ', escapeFn, include, rethrow', src);
/plugin/json/script/
Dejs.min.js1ctor;var sanitizedFilename=opts.filename?JSON.stringify(opts.filename):"undefined";if(!this.source…
/plugin/asciidocjs/node_modules/ejs/
Dejs.min.js1ctor;var sanitizedFilename=opts.filename?JSON.stringify(opts.filename):"undefined";if(!this.source…
Dejs.js583 var ctor;
660 ctor = (new Function('return (async function(){}).constructor;'))();
672 ctor = Function;
674 fn = new ctor(opts.localsName + ', escapeFn, include, rethrow', src);
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
Dpdfmake.js17039 … = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype;… function
17722 module.exports = function inherits(ctor, superCtor) { argument
17723 ctor.super_ = superCtor
17724 ctor.prototype = Object.create(superCtor.prototype, {
17726 value: ctor,
17735 module.exports = function inherits(ctor, superCtor) {
17736 ctor.super_ = superCtor
17739 ctor.prototype = new TempCtor()
17740 ctor.prototype.constructor = ctor
18940 module.exports = function inherits(ctor, superCtor) {
[all …]

123