mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2024-12-13 13:48:40 +02:00
804 B
804 B
Always use compilation pragma in form module
An absence of a compilation directive before the procedure means using a directive by default.
A directive by default is AtServer
that leads to extra server call and it is not working on web-client.
Noncompliant Code Example
Procedure Server()
EndProcedure
Compliant Solution
&AtServer
Procedure Server()
EndProcedure