Multi Pages GUI and namespace feature
-
I did a script about a GUI with multi pages feature but I didn't use the namespace feature as @Christoph-Hart adviced in the old topic https://forum.hise.audio/topic/725/design-patterns. Surely the namespace use is a more logical and clean method, anyway I'd like to know if it could improve in some way the stability or speed of the compiled plugin or it's just only a more correct programming procedure.
-
Namespaces are resolved before the abstract syntax tree of the javascript engine is parsed so it has absolutely no impact on performance.
-
@Christoph-Hart said in Multi Pages GUI and namespace feature:
Namespaces are resolved before the abstract syntax tree of the javascript engine is parsed so it has absolutely no impact on performance.
So it's a better clean way to work ;)