diff options
Diffstat (limited to 'src/expr.h')
-rw-r--r-- | src/expr.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -128,6 +128,10 @@ public: void parse(std::istream& in, const uint32_t flags = 0, const string * original_string = NULL); + void mark_uncompiled() { + compiled = false; + } + void recompile(scope_t& scope); void compile(scope_t& scope); value_t calc(scope_t& scope); value_t calc(scope_t& scope) const; |