diff --git a/src/NUnitTests/CompilerTests.cs b/src/NUnitTests/CompilerTests.cs index 5f3f5ceec..4af1cdc21 100644 --- a/src/NUnitTests/CompilerTests.cs +++ b/src/NUnitTests/CompilerTests.cs @@ -35,7 +35,7 @@ public void TestNoSemicolonBeforeEndProcedure() Возврат КонецПроцедуры"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } [Test] @@ -46,7 +46,7 @@ public void TestNoSemicolonBeforeEndFunction() Возврат 4 КонецФункции"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } [Test] @@ -57,7 +57,7 @@ public void TestNoSemicolonBeforeEndDo() Прервать КонецЦикла"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } [Test] @@ -72,7 +72,7 @@ ИначеЕсли Истина Тогда Ф = 3 КонецЕсли"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } [Test] @@ -85,7 +85,7 @@ public void TestNoSemicolonBeforeExceptionOrEndTry() ВызватьИсключение КонецПопытки"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } @@ -98,7 +98,7 @@ public void TestNoSemicolonBeforeEndOfText() КонецПроцедуры Ф = 0"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } #endregion @@ -112,7 +112,7 @@ public void TestSemicolonBeforeEndProcedure() Возврат; КонецПроцедуры"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } [Test] @@ -123,7 +123,7 @@ public void TestSemicolonBeforeEndFunction() Возврат 4; КонецФункции"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } [Test] @@ -134,7 +134,7 @@ public void TestSemicolonBeforeEndDo() Прервать; КонецЦикла"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } [Test] @@ -149,7 +149,7 @@ ИначеЕсли Истина Тогда Ф = 3; КонецЕсли"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } [Test] @@ -162,7 +162,7 @@ public void TestSemicolonBeforeExceptionOrEndTry() ВызватьИсключение; КонецПопытки"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } @@ -175,7 +175,7 @@ public void TestSemicolonBeforeEndOfText() КонецПроцедуры Ф = 0;"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } #endregion @@ -192,7 +192,7 @@ public void TestEndFunctionDoesNotEndIf() bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -212,7 +212,7 @@ public void TestEndDoDoesNotEndIf() bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -232,7 +232,7 @@ public void TestEndIfDoesNotEndDo() bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -251,7 +251,7 @@ public void TestEndFunctionDoesNotEndProcedure() bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -271,7 +271,7 @@ Возврат 0 bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -291,7 +291,7 @@ public void TestElseifDoesNotEndProcedure() bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -311,7 +311,7 @@ public void TestEndTryDoesNotEndProcedure() bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -339,7 +339,7 @@ Функция Ф1(П1, П2 = Неопределено, П3 = Неопредел Р = Ф1(,,) + Ф1(,); "); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } [Test(Description = "Не компилируется вызов метода вообще без параметров")] @@ -355,7 +355,7 @@ public void TestCantCompileCallWithoutParams() bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -374,7 +374,7 @@ public void TestReturnBeforeException() Исключение КонецПопытки КонецПроцедуры"); - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } @@ -389,7 +389,7 @@ ДобавитьОбработчик ЭтотОбъект.Событие Ина bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -411,7 +411,7 @@ Процедура Проц1() bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -434,7 +434,7 @@ Если Истина Тогда bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -457,7 +457,7 @@ Процедура Проц2() bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -479,7 +479,7 @@ Если Ложь Тогда bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -501,7 +501,7 @@ Если Ложь Тогда bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -524,7 +524,7 @@ Если Ложь Тогда bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) { @@ -538,13 +538,13 @@ public void TestLocalExportVar() { var moduleSource = host.Engine.Loader.FromString( @"Процедура Проц1() - Перем Переменная Экспорт; - КонецПроцедуры"); + Перем Переменная Экспорт; + КонецПроцедуры"); bool exceptionThrown = false; try { - _ = host.Engine.GetCompilerService().Compile(moduleSource); + host.Engine.GetCompilerService().Compile(moduleSource); } catch (CompilerException) {