diff options
author | Marius Kintel <marius@kintel.net> | 2013-04-24 13:17:25 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-04-26 21:45:03 (GMT) |
commit | 9b740b558dd627412e01a3521d5372d95e294af2 (patch) | |
tree | f34ebfa719303629e27d5fe84c177b5ac38adfbe /src/localscope.h | |
parent | 9a297ecee57549a4eb3919bde4f7b41a548724de (diff) |
Further refactoring of scope/context mechanisms. Mostly related to the new FileContext class. Not quite there yet, but almost
Diffstat (limited to 'src/localscope.h')
-rw-r--r-- | src/localscope.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/localscope.h b/src/localscope.h index e631028..87f8430 100644 --- a/src/localscope.h +++ b/src/localscope.h @@ -12,7 +12,7 @@ public: size_t numElements() const { return assignments.size() + children.size(); } std::string dump(const std::string &indent) const; - std::vector<class AbstractNode*> instantiateChildren(const class Context *evalctx) const; + std::vector<class AbstractNode*> instantiateChildren(const class Context *evalctx, class FileContext *filectx = NULL) const; AssignmentList assignments; ModuleInstantiationList children; |