You've already forked v8-code-style
mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2025-12-08 10:45:09 +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