コード例 #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
ファイル: ArrayObject.cs プロジェクト: stanasse/olive
 protected void SpliceSlowly(CodeContext context, uint start, uint deleteCount, object [] args,
                             ArrayObject outArray, uint oldLength, uint newLength)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: ArrayObject.cs プロジェクト: alesliehughes/olive
		protected void SpliceSlowly (CodeContext context, uint start, uint deleteCount, object [] args,
					     ArrayObject outArray, uint oldLength, uint newLength)
		{
			throw new NotImplementedException ();
		}