diff options
author | agirbal <antoine@10gen.com> | 2012-02-27 01:27:09 -0800 |
---|---|---|
committer | agirbal <antoine@10gen.com> | 2012-02-27 01:27:09 -0800 |
commit | 10da27ca707b6b7b2766f4b4210ceb273da5dfdc (patch) | |
tree | 445ac58d9b664e29244e8eac7589d007c8b01dd5 /src/mongo/scripting/engine_v8.h | |
parent | 1c34e3a801a9574f1ce76ae1bee71c67a6f69d4b (diff) | |
download | mongo-10da27ca707b6b7b2766f4b4210ceb273da5dfdc.tar.gz |
SERVER-5034: strange object behavior in v8 shell, reworked wrapper handling of keys
Diffstat (limited to 'src/mongo/scripting/engine_v8.h')
-rw-r--r-- | src/mongo/scripting/engine_v8.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/scripting/engine_v8.h b/src/mongo/scripting/engine_v8.h index cbb96e61f29..c462adf0237 100644 --- a/src/mongo/scripting/engine_v8.h +++ b/src/mongo/scripting/engine_v8.h @@ -85,6 +85,9 @@ namespace mongo { BSONObj _obj; bool _modified; + list<string> _extra; + set<string> _removed; + }; class V8Scope : public Scope { |