Răsfoiți Sursa

__name__ definitions

Nicolas Cannasse 19 ani în urmă
părinte
comite
5643941688

+ 1 - 0
std/neko/NekoArray__.hx

@@ -26,6 +26,7 @@ package neko;
 
 
 class NekoArray__<T> implements Array<T> {
 class NekoArray__<T> implements Array<T> {
 
 
+	static var __name__ = ["Array"];
 	public var length(default,null) : Int;
 	public var length(default,null) : Int;
 
 
 	private function new() {
 	private function new() {

+ 1 - 0
std/neko/NekoDate__.hx

@@ -26,6 +26,7 @@ package neko;
 
 
 class NekoDate__ //implements Date
 class NekoDate__ //implements Date
 {
 {
+	static var __name__ = ["Date"];
 	private var __t : Void;
 	private var __t : Void;
 
 
 	public function new(year : Int, month : Int, day : Int, hour : Int, min : Int, sec : Int ) {
 	public function new(year : Int, month : Int, day : Int, hour : Int, min : Int, sec : Int ) {

+ 1 - 0
std/neko/NekoMath__.hx

@@ -26,6 +26,7 @@ package neko;
 
 
 class NekoMath__
 class NekoMath__
 {
 {
+	static var __name__ = ["Math"];
 	static var PI;
 	static var PI;
 	static var NaN;
 	static var NaN;
 	static var POSITIVE_INFINITY;
 	static var POSITIVE_INFINITY;

+ 1 - 0
std/neko/NekoString__.hx

@@ -26,6 +26,7 @@ package neko;
 
 
 class NekoString__ implements String {
 class NekoString__ implements String {
 
 
+	static var __name__ = ["String"];
 	private static var __split : Dynamic = Lib.load("std","string_split",2);
 	private static var __split : Dynamic = Lib.load("std","string_split",2);
 
 
 	public var length(default,null) : Int;
 	public var length(default,null) : Int;

+ 1 - 0
std/neko/NekoXml__.hx

@@ -27,6 +27,7 @@ import Xml;
 
 
 class NekoXml__ {
 class NekoXml__ {
 
 
+	static var __name__ = ["Xml"];
 	private var _children : Array<Xml>;
 	private var _children : Array<Xml>;
 	public var nodeType(default,null) : XmlType;
 	public var nodeType(default,null) : XmlType;