Phasor 2.2.0
Stack VM based Programming Language
Loading...
Searching...
No Matches
Frontend.hpp
Go to the documentation of this file.
2#include <string>
3
4namespace Phasor
5{
6
8namespace Frontend
9{
16void runScript(const std::string &source, VM *vm = nullptr);
17
22void runRepl(VM *vm = nullptr);
23} // namespace Frontend
24
25} // namespace Phasor
Virtual Machine.
Definition VM.hpp:18
Frontend namespace.
Definition Frontend.hpp:9
void runScript(const std::string &source, VM *vm=nullptr)
Run a script.
Definition Frontend.cpp:33
void runRepl(VM *vm=nullptr)
Run an REPL.
Definition Frontend.cpp:80
The Phasor Programming Language and Runtime.
Definition AST.hpp:8