@@ -26,6 +26,7 @@ package neko;
class NekoArray__<T> implements Array<T> {
+ static var __name__ = ["Array"];
public var length(default,null) : Int;
private function new() {
class NekoDate__ //implements Date
{
+ static var __name__ = ["Date"];
private var __t : Void;
public function new(year : Int, month : Int, day : Int, hour : Int, min : Int, sec : Int ) {
class NekoMath__
+ static var __name__ = ["Math"];
static var PI;
static var NaN;
static var POSITIVE_INFINITY;
class NekoString__ implements String {
+ static var __name__ = ["String"];
private static var __split : Dynamic = Lib.load("std","string_split",2);
@@ -27,6 +27,7 @@ import Xml;
class NekoXml__ {
+ static var __name__ = ["Xml"];
private var _children : Array<Xml>;
public var nodeType(default,null) : XmlType;