Browse Source

Renaming arguments

Sebastien Ros 12 years ago
parent
commit
d73582a7d8

+ 1 - 1
Jint/Native/Array/ArrayConstructor.cs

@@ -36,7 +36,7 @@ namespace Jint.Native.Array
             FastAddProperty("isArray", new ClrFunctionInstance<object, object>(Engine, IsArray), false, false, false);
         }
 
-        private object IsArray(object arg1, object[] arg2)
+        private object IsArray(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }

+ 5 - 5
Jint/Native/Array/ArrayPrototype.cs

@@ -113,27 +113,27 @@ namespace Jint.Native.Array
             throw new NotImplementedException();
         }
 
-        private object Reverse(object arg1, object[] arg2)
+        private object Reverse(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
 
-        private object Join(object arg1, object[] arg2)
+        private object Join(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
 
-        private object ToLocaleString(object arg1, object[] arg2)
+        private object ToLocaleString(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
 
-        private object Concat(object arg1, object[] arg2)
+        private object Concat(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
 
-        private object ToArrayString(object arg1, object[] arg2)
+        private object ToArrayString(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }

+ 2 - 2
Jint/Native/Boolean/BooleanPrototype.cs

@@ -29,12 +29,12 @@ namespace Jint.Native.Boolean
             FastAddProperty("valueOf", new ClrFunctionInstance<object, object>(Engine, ValueOf), false, false, false);
         }
 
-        private object ValueOf(object arg1, object[] arg2)
+        private object ValueOf(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
 
-        private object ToBooleanString(object arg1, object[] arg2)
+        private object ToBooleanString(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }

+ 2 - 2
Jint/Native/Function/FunctionPrototype.cs

@@ -36,12 +36,12 @@ namespace Jint.Native.Function
             FastAddProperty("bind", new ClrFunctionInstance<object, object>(Engine, Bind), false, false, false);
         }
 
-        private object Bind(object arg1, object[] arg2)
+        private object Bind(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
 
-        private object ToFunctionString(object arg1, object[] arg2)
+        private object ToFunctionString(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }

+ 5 - 5
Jint/Native/Number/NumberPrototype.cs

@@ -34,27 +34,27 @@ namespace Jint.Native.Number
             FastAddProperty("toPrecision", new ClrFunctionInstance<object, object>(Engine, ToPrecision), false, false, false);
         }
 
-        private object ToLocaleString(object arg1, object[] arg2)
+        private object ToLocaleString(object thisObj, object[] arguments)
         {
             throw new System.NotImplementedException();
         }
 
-        private object ValueOf(object arg1, object[] arg2)
+        private object ValueOf(object thisObj, object[] arguments)
         {
             throw new System.NotImplementedException();
         }
 
-        private object ToFixed(object arg1, object[] arg2)
+        private object ToFixed(object thisObj, object[] arguments)
         {
             throw new System.NotImplementedException();
         }
 
-        private object ToExponential(object arg1, object[] arg2)
+        private object ToExponential(object thisObj, object[] arguments)
         {
             throw new System.NotImplementedException();
         }
 
-        private object ToPrecision(object arg1, object[] arg2)
+        private object ToPrecision(object thisObj, object[] arguments)
         {
             throw new System.NotImplementedException();
         }

+ 1 - 1
Jint/Native/String/StringConstructor.cs

@@ -34,7 +34,7 @@ namespace Jint.Native.String
             FastAddProperty("fromCharCode", new ClrFunctionInstance<object, object>(Engine, FromCharCode), false, false, false);
         }
 
-        private object FromCharCode(object arg1, object[] arg2)
+        private object FromCharCode(object thisObj, object[] arguments)
         {
             throw new System.NotImplementedException();
         }

+ 19 - 19
Jint/Native/String/StringPrototype.cs

@@ -46,79 +46,79 @@ namespace Jint.Native.String
             FastAddProperty("toLocaleUpperCase", new ClrFunctionInstance<object, object>(Engine, ToLocaleUpperCase), false, false, false);
             FastAddProperty("trim", new ClrFunctionInstance<object, object>(Engine, Trim), false, false, false);
         }
-        private object Trim(object arg1, object[] arg2)
+        private object Trim(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object ToLocaleUpperCase(object arg1, object[] arg2)
+        private object ToLocaleUpperCase(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object ToUpperCase(object arg1, object[] arg2)
+        private object ToUpperCase(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object ToLocaleLowerCase(object arg1, object[] arg2)
+        private object ToLocaleLowerCase(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object ToLowerCase(object arg1, object[] arg2)
+        private object ToLowerCase(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object Substring(object arg1, object[] arg2)
+        private object Substring(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object Split(object arg1, object[] arg2)
+        private object Split(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object Slice(object arg1, object[] arg2)
+        private object Slice(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object Search(object arg1, object[] arg2)
+        private object Search(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object Replace(object arg1, object[] arg2)
+        private object Replace(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object Match(object arg1, object[] arg2)
+        private object Match(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object LocaleCompare(object arg1, object[] arg2)
+        private object LocaleCompare(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object LastIndexOf(object arg1, object[] arg2)
+        private object LastIndexOf(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object IndexOf(object arg1, object[] arg2)
+        private object IndexOf(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object Concat(object arg1, object[] arg2)
+        private object Concat(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object CharCodeAt(object arg1, object[] arg2)
+        private object CharCodeAt(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object CharAt(object arg1, object[] arg2)
+        private object CharAt(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object ValueOf(object arg1, object[] arg2)
+        private object ValueOf(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }
-        private object ToStringString(object arg1, object[] arg2)
+        private object ToStringString(object thisObj, object[] arguments)
         {
             throw new NotImplementedException();
         }