1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/*
* Copyright (C)2005-2012 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
import js.Boot;
@:keepInit
@:coreApi class Std {
public static inline function is( v : Dynamic, t : Dynamic ) : Bool {
return untyped js.Boot.__instanceof(v,t);
}
public static inline function instance<T:{},S:T>( value : T, c : Class<S> ) : S {
return untyped __instanceof__(value, c) ? cast value : null;
}
public static function string( s : Dynamic ) : String {
return untyped js.Boot.__string_rec(s,"");
}
public static inline function int( x : Float ) : Int {
return (cast x) | 0;
}
public static function parseInt( x : String ) : Null<Int> {
var v = untyped __js__("parseInt")(x, 10);
// parse again if hexadecimal
if( v == 0 && (x.charCodeAt(1) == 'x'.code || x.charCodeAt(1) == 'X'.code) )
v = untyped __js__("parseInt")(x);
if( untyped __js__("isNaN")(v) )
return null;
return cast v;
}
public static inline function parseFloat( x : String ) : Float {
return untyped __js__("parseFloat")(x);
}
public static function random( x : Int ) : Int {
return untyped x <= 0 ? 0 : Math.floor(Math.random()*x);
}
static function __init__() : Void untyped {
__feature__("js.Boot.getClass",String.prototype.__class__ = __feature__("Type.resolveClass",$hxClasses["String"] = String,String));
__feature__("js.Boot.isClass",String.__name__ = __feature__("Type.getClassName",["String"],true));
__feature__("Type.resolveClass",$hxClasses["Array"] = Array);
__feature__("js.Boot.isClass",Array.__name__ = __feature__("Type.getClassName",["Array"],true));
__feature__("Date.*", {
__feature__("js.Boot.getClass",__js__('Date').prototype.__class__ = __feature__("Type.resolveClass",$hxClasses["Date"] = __js__('Date'),__js__('Date')));
__feature__("js.Boot.isClass",__js__('Date').__name__ = ["Date"]);
});
__feature__("Int.*",{
var Int = __feature__("Type.resolveClass", $hxClasses["Int"] = { __name__ : ["Int"] }, { __name__ : ["Int"] });
});
__feature__("Dynamic.*",{
var Dynamic = __feature__("Type.resolveClass", $hxClasses["Dynamic"] = { __name__ : ["Dynamic"] }, { __name__ : ["Dynamic"] });
});
__feature__("Float.*",{
var Float = __feature__("Type.resolveClass", $hxClasses["Float"] = __js__("Number"), __js__("Number"));
Float.__name__ = ["Float"];
});
__feature__("Bool.*",{
var Bool = __feature__("Type.resolveEnum",$hxClasses["Bool"] = __js__("Boolean"), __js__("Boolean"));
Bool.__ename__ = ["Bool"];
});
__feature__("Class.*",{
var Class = __feature__("Type.resolveClass", $hxClasses["Class"] = { __name__ : ["Class"] }, { __name__ : ["Class"] });
});
__feature__("Enum.*",{
var Enum = {};
});
__feature__("Void.*",{
var Void = __feature__("Type.resolveEnum", $hxClasses["Void"] = { __ename__ : ["Void"] }, { __ename__ : ["Void"] });
});
#if !js_es5
__feature__("Array.map",
if( Array.prototype.map == null )
Array.prototype.map = function(f) {
var a = [];
for( i in 0...__this__.length )
a[i] = f(__this__[i]);
return a;
}
);
__feature__("Array.filter",
if( Array.prototype.filter == null )
Array.prototype.filter = function(f) {
var a = [];
for( i in 0...__this__.length ) {
var e = __this__[i];
if( f(e) ) a.push(e);
}
return a;
}
);
#end
}
}
|