vox-core
Version:
Runtime de aplicaciones multiplataforma
20 lines (15 loc) • 441 B
JavaScript
var consts= core.VW.Clr.Constants;
/**
* Representa un método estático o no estático de .NET
* @memberof VW.Clr
* @constructor
* @name Function
* @param {Object} options
* @protected
*/
var LprFunction= core.org.voxsoftware.Lpr.Function
var Function= module.exports= function(args){
LprFunction.call(this, args)
}
Function.prototype = Object.create(LprFunction.prototype);
Function.prototype.constructor= Function