Browse Source

Fixed strings

Alastair 10 years ago
parent
commit
975de1ebcd
1 changed files with 5 additions and 5 deletions
  1. 5 5
      Jint/Native/JsValue.cs

+ 5 - 5
Jint/Native/JsValue.cs

@@ -31,7 +31,7 @@ namespace Jint.Native
             _bool = value;
             _bool = value;
             _double = double.NaN;
             _double = double.NaN;
             _object = null;
             _object = null;
-            _string = System.String.Empty;
+            _string = null;
             _type = Types.Boolean;
             _type = Types.Boolean;
         }
         }
 
 
@@ -40,7 +40,7 @@ namespace Jint.Native
             _bool = false;
             _bool = false;
             _double = value;
             _double = value;
             _object = null;
             _object = null;
-            _string = System.String.Empty;
+            _string = null;
             _type = Types.Number;
             _type = Types.Number;
         }
         }
 
 
@@ -58,7 +58,7 @@ namespace Jint.Native
             _bool = false;
             _bool = false;
             _double = double.NaN;
             _double = double.NaN;
             _object = value;
             _object = value;
-            _string = System.String.Empty;
+            _string = null;
             _type = Types.Object;
             _type = Types.Object;
         }
         }
 
 
@@ -67,7 +67,7 @@ namespace Jint.Native
             _bool = false;
             _bool = false;
             _double = double.NaN;
             _double = double.NaN;
             _object = null;
             _object = null;
-            _string = System.String.Empty;
+            _string = null;
             _type = type;
             _type = type;
         }
         }
 
 
@@ -206,7 +206,7 @@ namespace Jint.Native
                 throw new ArgumentException("The value is not a string");
                 throw new ArgumentException("The value is not a string");
             }
             }
 
 
-            if (_string == System.String.Empty)
+            if (_string == null)
             {
             {
                 throw new ArgumentException("The value is not defined");
                 throw new ArgumentException("The value is not defined");
             }
             }