mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2025-02-03 18:02:08 +02:00
45 lines
568 B
Plaintext
45 lines
568 B
Plaintext
Procedure MyCorrectProcedureBeforeAfter(Param) Export
|
|
|
|
Param = 1;
|
|
|
|
EndProcedure
|
|
|
|
Function MyCorrectFunctionAround(Param) Export
|
|
|
|
Param = 1;
|
|
|
|
Return Param;
|
|
|
|
EndFunction
|
|
|
|
Function MyCorrectFunctionChangeAndValidate(Param) Export
|
|
|
|
Param = 1;
|
|
|
|
Return Param;
|
|
|
|
EndFunction
|
|
|
|
Procedure MyIncorrectProcedureBeforeAfter(Param) Export
|
|
|
|
Param = 1;
|
|
|
|
EndProcedure
|
|
|
|
Function MyIncorrectFunctionAround(Param) Export
|
|
|
|
Param = 1;
|
|
|
|
Return Param;
|
|
|
|
EndFunction
|
|
|
|
Function MyIncorrectFunctionChangeAndValidate(Param) Export
|
|
|
|
Param = 1;
|
|
|
|
Return Param;
|
|
|
|
EndFunction
|
|
|