Skip to content

Commit fd4eca6

Browse files
authored
Merge pull request github#5254 from tamasvajk/feature/fix-merge
C#: Fix merge conflict (with + refactoring)
2 parents d2816b3 + 380058a commit fd4eca6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/WithExpression.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ private WithExpression(ExpressionNodeInfo info) : base(info.SetKind(ExprKind.WIT
1212

1313
protected override void PopulateExpression(TextWriter trapFile)
1414
{
15-
Create(cx, Syntax.Expression, this, 0);
15+
Create(Context, Syntax.Expression, this, 0);
1616

17-
ObjectInitializer.Create(new ExpressionNodeInfo(cx, Syntax.Initializer, this, 1).SetType(Type));
17+
ObjectInitializer.Create(new ExpressionNodeInfo(Context, Syntax.Initializer, this, 1).SetType(Type));
1818
}
1919
}
2020
}

0 commit comments

Comments
 (0)