예제 #1
0
		public static ArrayObject ConstructArrayFromArrayLiteral (CodeContext context, object [] values)
		{
			ArrayObject result = new ArrayObject ();
			foreach (object obj in values) {
				result.AddObjectKey (obj.ToString (), obj);
			}
			return result;
		}
예제 #2
0
 protected void SpliceSlowly(CodeContext context, uint start, uint deleteCount, object [] args,
                             ArrayObject outArray, uint oldLength, uint newLength)
 {
     throw new NotImplementedException();
 }
예제 #3
0
		protected void SpliceSlowly (CodeContext context, uint start, uint deleteCount, object [] args,
					     ArrayObject outArray, uint oldLength, uint newLength)
		{
			throw new NotImplementedException ();
		}