Skip to content

Commit

Permalink
Рефлектор возвращает приватные поля и методы
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolemus committed Jan 12, 2023
1 parent 4c1aab6 commit 5b71661
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions src/NUnitTests/CompilerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void TestNoSemicolonBeforeEndProcedure()
Возврат
КонецПроцедуры");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}

[Test]
Expand All @@ -46,7 +46,7 @@ public void TestNoSemicolonBeforeEndFunction()
Возврат 4
КонецФункции");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}

[Test]
Expand All @@ -57,7 +57,7 @@ public void TestNoSemicolonBeforeEndDo()
Прервать
КонецЦикла");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}

[Test]
Expand All @@ -72,7 +72,7 @@ ИначеЕсли Истина Тогда
Ф = 3
КонецЕсли");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}

[Test]
Expand All @@ -85,7 +85,7 @@ public void TestNoSemicolonBeforeExceptionOrEndTry()
ВызватьИсключение
КонецПопытки");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}


Expand All @@ -98,7 +98,7 @@ public void TestNoSemicolonBeforeEndOfText()
КонецПроцедуры
Ф = 0");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
#endregion

Expand All @@ -112,7 +112,7 @@ public void TestSemicolonBeforeEndProcedure()
Возврат;
КонецПроцедуры");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}

[Test]
Expand All @@ -123,7 +123,7 @@ public void TestSemicolonBeforeEndFunction()
Возврат 4;
КонецФункции");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}

[Test]
Expand All @@ -134,7 +134,7 @@ public void TestSemicolonBeforeEndDo()
Прервать;
КонецЦикла");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}

[Test]
Expand All @@ -149,7 +149,7 @@ ИначеЕсли Истина Тогда
Ф = 3;
КонецЕсли");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}

[Test]
Expand All @@ -162,7 +162,7 @@ public void TestSemicolonBeforeExceptionOrEndTry()
ВызватьИсключение;
КонецПопытки");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}


Expand All @@ -175,7 +175,7 @@ public void TestSemicolonBeforeEndOfText()
КонецПроцедуры
Ф = 0;");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
#endregion

Expand All @@ -192,7 +192,7 @@ public void TestEndFunctionDoesNotEndIf()
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -212,7 +212,7 @@ public void TestEndDoDoesNotEndIf()
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -232,7 +232,7 @@ public void TestEndIfDoesNotEndDo()
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -251,7 +251,7 @@ public void TestEndFunctionDoesNotEndProcedure()
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -271,7 +271,7 @@ Возврат 0
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -291,7 +291,7 @@ public void TestElseifDoesNotEndProcedure()
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -311,7 +311,7 @@ public void TestEndTryDoesNotEndProcedure()
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand Down Expand Up @@ -339,7 +339,7 @@ Функция Ф1(П1, П2 = Неопределено, П3 = Неопредел
Р = Ф1(,,) + Ф1(,);
");

_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}

[Test(Description = "Не компилируется вызов метода вообще без параметров")]
Expand All @@ -355,7 +355,7 @@ public void TestCantCompileCallWithoutParams()
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -374,7 +374,7 @@ public void TestReturnBeforeException()
Исключение
КонецПопытки
КонецПроцедуры");
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}


Expand All @@ -389,7 +389,7 @@ ДобавитьОбработчик ЭтотОбъект.Событие Ина
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -411,7 +411,7 @@ Процедура Проц1()
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -434,7 +434,7 @@ Если Истина Тогда
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -457,7 +457,7 @@ Процедура Проц2()
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -479,7 +479,7 @@ Если Ложь Тогда
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -501,7 +501,7 @@ Если Ложь Тогда
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -524,7 +524,7 @@ Если Ложь Тогда
bool exceptionThrown = false;
try
{
_ = host.Engine.GetCompilerService().Compile(moduleSource);
host.Engine.GetCompilerService().Compile(moduleSource);
}
catch (CompilerException)
{
Expand All @@ -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)
{
Expand Down

0 comments on commit 5b71661

Please sign in to comment.