mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-11 21:04:10 +02:00
Fixes for new out-var rules, unassigned variable detection
This commit is contained in:
parent
6878183873
commit
fd3265445d
9 changed files with 56 additions and 30 deletions
|
@ -9363,7 +9363,7 @@ namespace IDE
|
|||
{
|
||||
if (mBuildContext != null)
|
||||
{
|
||||
if (mBuildContext.mScriptContext.mVars.TryGetValue(varName, var value))
|
||||
if (mBuildContext.mScriptContext.mVars.TryGetValue(varName, out value))
|
||||
{
|
||||
if (value.VariantType == typeof(String))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue