Implemented copy without state function for script
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: Deukhoofd <deukhoofd@gmail.com>
This commit is contained in:
2019-06-24 15:35:25 +02:00
parent 97be8cded0
commit fd83b6b992

View File

@@ -23,7 +23,7 @@ namespace Porygon{
shared_ptr<ScriptType> _returnType; shared_ptr<ScriptType> _returnType;
explicit Script(const u16string&); explicit Script(const u16string&);
Script(shared_ptr<Binder::BoundScriptStatement> boundScript, shared_ptr<Diagnostics::DiagnosticsHolder> diagnostics); Script(shared_ptr<BoundScriptStatement> boundScript, shared_ptr<Diagnostics::DiagnosticsHolder> diagnostics);
void Parse(const u16string& script); void Parse(const u16string& script);
public: public:
shared_ptr<Diagnostics::DiagnosticsHolder> Diagnostics; shared_ptr<Diagnostics::DiagnosticsHolder> Diagnostics;