1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2024-12-13 05:35:39 +02:00
v8-code-style/bundles/com.e1c.v8codestyle.bsl/markdown/module-region-empty.md

398 B

Region is empty

Check that module region is empty

Noncompliant Code Example


#Region Empty

#EndRegion

```bsl


## Compliant Solution

```bsl

#Region NotEmpty

Procedure Test()
	
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)