diff options
author | Marius Kintel <marius@kintel.net> | 2013-06-13 14:29:39 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-06-13 14:29:39 (GMT) |
commit | b45a93aad28a6764aa9aa56d27ffb716353dc27c (patch) | |
tree | 747cffce89dab5a4038d2467dfe2fae339bdb5fe /src/modcontext.h | |
parent | 2a8f188fca3476dd07222585237d3afbc2e7b6be (diff) |
Related to #399, reverted assignment evaluation order to be the same as in 2013.01 as the new implementation broke existing scripts. Added some experimental commented out code, which can be used as reference in the future
Diffstat (limited to 'src/modcontext.h')
-rw-r--r-- | src/modcontext.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modcontext.h b/src/modcontext.h index 0b3e48c..3a05a0c 100644 --- a/src/modcontext.h +++ b/src/modcontext.h @@ -36,6 +36,9 @@ public: #ifdef DEBUG virtual void dump(const class AbstractModule *mod, const ModuleInstantiation *inst); #endif +private: +// Experimental code. See issue #399 +// void evaluateAssignments(const AssignmentList &assignments); }; class FileContext : public ModuleContext |