starling-framework
Version:
A fast, productive library for 2D cross-platform development.
45 lines (27 loc) • 1.01 kB
JavaScript
// Class: haxe._Int64.___Int64
var $global = typeof window != "undefined" ? window : typeof global != "undefined" ? global : typeof self != "undefined" ? self : this
$global.Object.defineProperty(exports, "__esModule", {value: true});
var __map_reserved = {};
// Imports
var $hxClasses = require("./../../hxClasses_stub").default;
var $hxEnums = require("./../../hxEnums_stub").default;
var $import = require("./../../import_stub").default;
function haxe__$Int64_Int64_$Impl_$() {return require("./../../haxe/_Int64/Int64_Impl_");}
// Constructor
var ___Int64 = function(high,low) {
this.high = high;
this.low = low;
}
// Meta
___Int64.__name__ = "haxe._Int64.___Int64";
___Int64.__isInterface__ = false;
___Int64.prototype = {
toString: function() {
return (haxe__$Int64_Int64_$Impl_$().default).toString(this);
}
};
___Int64.prototype.__class__ = ___Int64.prototype.constructor = $hxClasses["haxe._Int64.___Int64"] = ___Int64;
// Init
// Statics
// Export
exports.default = ___Int64;