aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4typedarray_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-08-14 20:34:37 +0200
committerLars Knoll <lars.knoll@qt.io>2018-08-23 08:13:42 +0000
commitc1ba78d79647b42e6846edd3de27ff767291d6ee (patch)
tree2f303cfd51fa1e699bddf522d15f0d0697778067 /src/qml/jsruntime/qv4typedarray_p.h
parent5ad362938265169af2b85fc0e23ebfb9836907f0 (diff)
Implement %TypedArray%.prototype.filter
Change-Id: I37bd3ab43f2d896b62fb9afc74e5fe3313b591d2 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4typedarray_p.h')
-rw-r--r--src/qml/jsruntime/qv4typedarray_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4typedarray_p.h b/src/qml/jsruntime/qv4typedarray_p.h
index ab640b85de..ddd2193e9f 100644
--- a/src/qml/jsruntime/qv4typedarray_p.h
+++ b/src/qml/jsruntime/qv4typedarray_p.h
@@ -178,6 +178,7 @@ struct IntrinsicTypedArrayPrototype : Object
static ReturnedValue method_entries(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
static ReturnedValue method_every(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
static ReturnedValue method_fill(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
+ static ReturnedValue method_filter(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
static ReturnedValue method_find(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
static ReturnedValue method_findIndex(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
static ReturnedValue method_forEach(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);