1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 07:44:09 +02:00

Enhanced var capabilities for scripts and building

This commit is contained in:
Brian Fiete 2020-05-21 11:47:15 -07:00
parent 38551d7a1d
commit f8b27c13a2
4 changed files with 171 additions and 12 deletions

View file

@ -35,6 +35,7 @@ namespace IDE
delete val;
delete _;
};
public ScriptManager.Context mScriptContext = new .() ~ _.ReleaseLastRef();
public ScriptManager mScriptManager ~ delete _;
public bool Failed
@ -152,7 +153,7 @@ namespace IDE
if (mScriptManager == null)
{
mScriptManager = new .();
mScriptManager = new .(mScriptContext);
mScriptManager.mProjectName = new String(project.mProjectName);
mScriptManager.mIsBuildScript = true;
mScriptManager.mSoftFail = true;