Merge branch 'master' into debug-step

This commit is contained in:
Ben Burdette
2022-02-04 15:09:40 -07:00
178 changed files with 2886 additions and 28663 deletions
+13
View File
@@ -43,6 +43,19 @@ private:
std::shared_ptr<Store> _store;
};
/* A command that copies something between `--from` and `--to`
stores. */
struct CopyCommand : virtual StoreCommand
{
std::string srcUri, dstUri;
CopyCommand();
ref<Store> createStore() override;
ref<Store> getDstStore();
};
struct EvalCommand : virtual StoreCommand, MixEvalArgs
{
bool startReplOnEvalErrors = false;