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

Signed-off-by: Deukhoofd <deukhoofd@gmail.com>
This commit is contained in:
Deukhoofd 2019-06-24 15:35:25 +02:00
parent 97be8cded0
commit fd83b6b992
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ namespace Porygon{
shared_ptr<ScriptType> _returnType;
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);
public:
shared_ptr<Diagnostics::DiagnosticsHolder> Diagnostics;