1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-01-21 05:21:23 +02:00
v8-code-style/bundles/com.e1c.v8codestyle.bsl/markdown/module-structure-top-region.md

497 B

Module stucture top region

Check that module structure region is on top

Noncompliant Code Example


#Region NotEmpty

#Region Public

Procedure Test() Export
	
EndProcedure

#EndRegion

#EndRegion

```bsl

## Compliant Solution

```bsl

#Region Public

Procedure Test1() Export
	
EndProcedure

#EndRegion

```bsl

## See


- [Module structure](https://1c-dn.com/library/module_structure/)
- [Module structure](https://support.1ci.com/hc/en-us/articles/360011002360-Module-structure)