Skip to content

Commit

Permalink
Fix #131
Browse files Browse the repository at this point in the history
  • Loading branch information
nilproject committed May 3, 2018
1 parent 19bb82b commit 27568a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion NiL.JS/Statements/CodeBlock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,9 @@ public override void Decompose(ref CodeNode self)

for (int i = 0; i < _lines.Length; i++)
{
_lines[i].Decompose(ref _lines[i]);
var line = _lines[i];
line.Decompose(ref line);
_lines[i] = line;
}
}

Expand Down

0 comments on commit 27568a1

Please sign in to comment.