Skip to content

Instantly share code, notes, and snippets.

@hdon
Created June 9, 2009 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hdon/126681 to your computer and use it in GitHub Desktop.
Save hdon/126681 to your computer and use it in GitHub Desktop.
/** Implements ByteArray.toArray() */
static JSBool ByteArray_toArray(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "toArray.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.toString() */
static JSBool ByteArray_toString(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "toString.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.toSource() */
static JSBool ByteArray_toSource(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "toSource.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.reverse() */
static JSBool ByteArray_reverse(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "reverse.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.get() */
static JSBool ByteArray_get(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "get.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.byteAt() */
static JSBool ByteArray_byteAt(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "byteAt.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.concat() */
static JSBool ByteArray_concat(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "concat.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.pop() */
static JSBool ByteArray_pop(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "pop.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.push() */
static JSBool ByteArray_push(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "push.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.extendLeft() */
static JSBool ByteArray_extendLeft(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "extendLeft.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.extendRight() */
static JSBool ByteArray_extendRight(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "extendRight.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.shift() */
static JSBool ByteArray_shift(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "shift.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.unshift() */
static JSBool ByteArray_unshift(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "unshift.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.sort() */
static JSBool ByteArray_sort(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "sort.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.slice() */
static JSBool ByteArray_slice(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "slice.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.splice() */
static JSBool ByteArray_splice(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "splice.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.indexOf() */
static JSBool ByteArray_indexOf(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "indexOf.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.lastIndexOf() */
static JSBool ByteArray_lastIndexOf(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "lastIndexOf.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.reduce() */
static JSBool ByteArray_reduce(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "reduce.unimplemented: this method is not yet implemented!");
}
/** Implements ByteArray.reduceRight() */
static JSBool ByteArray_reduceRight(JSContext *cx, uintN argc, jsval *vp)
{
return gpsee_throw(cx, CLASS_ID "reduceRight.unimplemented: this method is not yet implemented!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment