starling-framework
Version:
A fast, productive library for 2D cross-platform development.
43 lines (25 loc) • 1.03 kB
JavaScript
// Class: haxe.ds._ReadOnlyArray.ReadOnlyArray_Impl_
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;
// Constructor
var ReadOnlyArray_Impl_ = function(){}
// Meta
ReadOnlyArray_Impl_.__name__ = "haxe.ds._ReadOnlyArray.ReadOnlyArray_Impl_";
ReadOnlyArray_Impl_.__isInterface__ = false;
ReadOnlyArray_Impl_.prototype = {
};
ReadOnlyArray_Impl_.prototype.__class__ = ReadOnlyArray_Impl_.prototype.constructor = $hxClasses["haxe.ds._ReadOnlyArray.ReadOnlyArray_Impl_"] = ReadOnlyArray_Impl_;
// Init
// Statics
ReadOnlyArray_Impl_.get_length = function(this1) {
return this1.length;
}
ReadOnlyArray_Impl_.get = function(this1,i) {
return this1[i];
}
// Export
exports.default = ReadOnlyArray_Impl_;