Callbacks will be renamed to XXX.XXXXXX_Cb.
We don't have any EFL naming convention for callbacks. however, binding languages
have the naming guideline for framework.
This patch will make it esay to have a general translation rule for generator.
Details
Details
Diff Detail
Diff Detail
- Repository
- rEFL core/efl
- Branch
- master
- Lint
No Linters Available - Unit
No Unit Test Coverage - Build Status
Buildable 15872 Build 10757: arc lint + arc unit
Comment Actions
On second thoughts, there is no naming convention, go ahead (builds and passes tests).
Comment Actions
C# recommends naming rules for callbacks.
Base Type | Derived/Implementing Type Guideline |
---|---|
System.Delegate | DO add the suffix "Callback" to names of delegates other than those used as event handlers. |
I think it is better to add suffix like "Cb" for eo functions to apply same rules in eolian_mono.
Comment Actions
I meant that there is no naming convention for callbacks in EO :)
I think it is better to add suffix like "Cb" for eo functions to apply same rules in eolian_mono.
Yeah, I think so too.
Comment Actions
Mhm, would you mind also splitting the names with a "_" so "FooBar" gets "Foo_Bar" ? that would match the efl standard even more.