summaryrefslogtreecommitdiff
path: root/src/scope.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/scope.h')
-rw-r--r--src/scope.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/scope.h b/src/scope.h
index f7c2f46b..36eb54f1 100644
--- a/src/scope.h
+++ b/src/scope.h
@@ -196,6 +196,9 @@ public:
return args[index];
}
+ void push_front(const value_t& val) {
+ args.push_front(val);
+ }
void push_back(const value_t& val) {
args.push_back(val);
}