loom
1/*
2MIT License
3
4Copyright (c) 2022 МГТУ им. Н.Э. Баумана, кафедра ИУ-6, Михаил Фетисов,
5
6https://bmstu.codes/lsx/simodo/loom
7*/
8
9#include "simodo/interpret/builtins/hosts/fuze/FuzeRunning.h"
10
11namespace simodo::interpret::builtins
12{
13
14FuzeRunning::FuzeRunning(Interpret * inter,
15std::string grammar_name,
16parser::Grammar & grammar,
17parser::TableBuildMethod method,
18bool need_strict_rule_consistency)
19: FuzeInterpret_abstract(inter, grammar_name, grammar, method, need_strict_rule_consistency)
20{
21
22}
23
24}