aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4propertykey_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-09-01 23:21:21 +0200
committerLars Knoll <lars.knoll@qt.io>2018-09-04 18:25:38 +0000
commitf5ad1a13e5ce9ce1389ea7731829ea455259a4db (patch)
tree3e340593b23df47c9f016d2db43d9184a1a64e59 /src/qml/jsruntime/qv4propertykey_p.h
parenta6ba4f044e3611fb66a6cce87bc06933c3e27070 (diff)
Fix a couple of internals in TypedArrays
Handle property keys that are numeric strings, and implement getOwnProperty. Change-Id: I4c7ed21b6429b07f02a28bce537bcb7934a993d3 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4propertykey_p.h')
-rw-r--r--src/qml/jsruntime/qv4propertykey_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4propertykey_p.h b/src/qml/jsruntime/qv4propertykey_p.h
index 7134b06c6d..cb2661f244 100644
--- a/src/qml/jsruntime/qv4propertykey_p.h
+++ b/src/qml/jsruntime/qv4propertykey_p.h
@@ -126,6 +126,7 @@ public:
bool isString() const;
bool isSymbol() const;
+ bool isCanonicalNumericIndexString() const;
Q_QML_EXPORT QString toQString() const;
Heap::StringOrSymbol *toStringOrSymbol(ExecutionEngine *e);