Drop snapshot argument from Bind constructor.

This commit is contained in:
Christian Kamm
2010-02-02 11:32:25 +01:00
parent b102690b00
commit c0506785bf
2 changed files with 3 additions and 5 deletions

View File

@@ -45,7 +45,7 @@ class Link;
class QMLJS_EXPORT Bind: protected AST::Visitor
{
protected:
Bind(Document::Ptr doc, const Snapshot &snapshot, Interpreter::Engine *interp);
Bind(Document::Ptr doc, Interpreter::Engine *interp);
public:
virtual ~Bind();
@@ -84,7 +84,6 @@ protected:
private:
Document::Ptr _doc;
Snapshot _snapshot;
Interpreter::Engine *_interp;
Interpreter::ObjectValue *_currentObjectValue;