WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
plugins
/
auto
/
adaptive_images
/
v3.4.0
/
lib
/
geometrize
/
haxe
/
io
/
Name
Action
..
Bytes.class.php
Edit
Eof.class.php
Edit
Editing: Bytes.class.php
<?php // Generated by Haxe 3.4.7 class haxe_io_Bytes { public function __construct($length, $b) { if(!php_Boot::$skip_constructor) { $this->length = $length; $this->b = $b; }} public $length; public $b; public function __call($m, $a) { if(isset($this->$m) && is_callable($this->$m)) return call_user_func_array($this->$m, $a); else if(isset($this->__dynamics[$m]) && is_callable($this->__dynamics[$m])) return call_user_func_array($this->__dynamics[$m], $a); else if('toString' == $m) return $this->__toString(); else throw new HException('Unable to call <'.$m.'>'); } static function alloc($length) { $x = new php__BytesData_Wrapper(str_repeat(chr(0), $length)); $this1 = $x; return new haxe_io_Bytes($length, $this1); } function __toString() { return 'haxe.io.Bytes'; } }