aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4objectiterator_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-09-08 23:07:31 +0200
committerLars Knoll <lars.knoll@qt.io>2018-09-09 15:52:10 +0000
commitbcc9aa7daf197e8f2befe215902443d608e07b6a (patch)
tree89d077b637c683e5b8add795e0b8ba2089dc4a3d /src/qml/jsruntime/qv4objectiterator_p.h
parent166fc4d84729fee683a9ea6b2c27cf51dc5f1c9d (diff)
Include symbols in getOwnPropertyKeys
And fix getOwnPropertySymbols and getOwnPropertyDescriptors. Change-Id: Ie0e4c3d308ffe8a904e9a6ab9242b2cda59d779f Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4objectiterator_p.h')
-rw-r--r--src/qml/jsruntime/qv4objectiterator_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4objectiterator_p.h b/src/qml/jsruntime/qv4objectiterator_p.h
index 0a5bcfc7ed..a20ce9cb88 100644
--- a/src/qml/jsruntime/qv4objectiterator_p.h
+++ b/src/qml/jsruntime/qv4objectiterator_p.h
@@ -61,7 +61,8 @@ struct Q_QML_EXPORT ObjectIterator
{
enum Flags {
NoFlags = 0,
- EnumerableOnly = 0x1
+ EnumerableOnly = 0x1,
+ WithSymbols = 0x2
};
ExecutionEngine *engine;