You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: engine/runtime-integration-tests/src/test/scala/org/enso/compiler/test/pass/analyse/GatherDiagnosticsTest.scala
+6-1
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,12 @@ class GatherDiagnosticsTest extends CompilerTest {
Copy file name to clipboardexpand all lines: engine/runtime-integration-tests/src/test/scala/org/enso/compiler/test/pass/desugar/OperatorToFunctionTest.scala
+18-8
Original file line number
Diff line number
Diff line change
@@ -65,9 +65,9 @@ class OperatorToFunctionTest extends MiniPassTest {
Copy file name to clipboardexpand all lines: engine/runtime-integration-tests/src/test/scala/org/enso/compiler/test/pass/desugar/SectionsToBinOpMegaPass.scala
+6-6
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ case object SectionsToBinOpMegaPass extends IRPass {
105
105
case sectionLeft @Section.Left(arg, op, loc, passData) =>
106
106
valrightArgName= freshNameSupply.newName()
107
107
valrightCallArg=
108
-
CallArgument.Specified(
108
+
newCallArgument.Specified(
109
109
None,
110
110
rightArgName,
111
111
true,
@@ -122,7 +122,7 @@ case object SectionsToBinOpMegaPass extends IRPass {
122
122
if (arg.value.isInstanceOf[Name.Blank]) {
123
123
valleftArgName= freshNameSupply.newName()
124
124
valleftCallArg=
125
-
CallArgument.Specified(
125
+
newCallArgument.Specified(
126
126
None,
127
127
leftArgName,
128
128
true,
@@ -171,7 +171,7 @@ case object SectionsToBinOpMegaPass extends IRPass {
171
171
case sectionSides @Section.Sides(op, loc, passData) =>
172
172
valleftArgName= freshNameSupply.newName()
173
173
valleftCallArg=
174
-
CallArgument.Specified(
174
+
newCallArgument.Specified(
175
175
None,
176
176
leftArgName,
177
177
true,
@@ -187,7 +187,7 @@ case object SectionsToBinOpMegaPass extends IRPass {
187
187
188
188
valrightArgName= freshNameSupply.newName()
189
189
valrightCallArg=
190
-
CallArgument.Specified(
190
+
newCallArgument.Specified(
191
191
None,
192
192
rightArgName,
193
193
true,
@@ -244,7 +244,7 @@ case object SectionsToBinOpMegaPass extends IRPass {
244
244
case sectionRight @Section.Right(op, arg, loc, passData) =>
245
245
valleftArgName= freshNameSupply.newName()
246
246
valleftCallArg=
247
-
CallArgument.Specified(
247
+
newCallArgument.Specified(
248
248
None,
249
249
leftArgName,
250
250
true,
@@ -263,7 +263,7 @@ case object SectionsToBinOpMegaPass extends IRPass {
0 commit comments